Update nvim config.
This commit is contained in:
parent
d65a5daf96
commit
83a6862734
8 changed files with 171 additions and 11 deletions
|
@ -23,7 +23,7 @@ packer.startup(function(use)
|
|||
-- Essentials
|
||||
use({
|
||||
"nvim-telescope/telescope.nvim", -- fuzzy find ALL the things
|
||||
-- config = function() require("dwl.plugin-conf.telescope") end,
|
||||
config = function() require("dwl.plugin-conf.telescope") end,
|
||||
})
|
||||
use({
|
||||
"windwp/nvim-ts-autotag", -- auto close html tags
|
||||
|
@ -47,6 +47,24 @@ packer.startup(function(use)
|
|||
})
|
||||
use("lukas-reineke/indent-blankline.nvim")
|
||||
|
||||
-- Look and feel
|
||||
use({
|
||||
"nvim-lualine/lualine.nvim", -- statusline in lua
|
||||
requires = {
|
||||
"kyazdani42/nvim-web-devicons",
|
||||
opt = true,
|
||||
},
|
||||
config = function() require("dwl.plugin-conf.lualine") end,
|
||||
})
|
||||
-- use({
|
||||
-- "nvim-tree/nvim-web-devicons",
|
||||
-- config = function() require('nvim-web-devicons').setup() end,
|
||||
-- })
|
||||
use({
|
||||
"petertriho/nvim-scrollbar",
|
||||
config = function() require("scrollbar").setup() end,
|
||||
})
|
||||
|
||||
-- LSP & Treesitter
|
||||
use("neovim/nvim-lspconfig") -- basic configurations for LSP client
|
||||
use("jose-elias-alvarez/null-ls.nvim") -- bridge between LSP client and external formatters/linters, not full fledged language servers
|
||||
|
@ -91,4 +109,4 @@ packer.startup(function(use)
|
|||
if packer_bootstrap then packer.sync() end
|
||||
end)
|
||||
|
||||
return packer_bootstrap
|
||||
return packer_bootstrap
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue