telescope,neo-tree,lsp config

This commit is contained in:
gregladden 2024-03-08 16:58:39 -06:00
parent e0f68cbc51
commit cc3f80c743
9 changed files with 190 additions and 28 deletions

13
lua/plugins/neotree.lua Normal file
View file

@ -0,0 +1,13 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function()
vim.keymap.set('n', '<C-n>', ':Neotree filesystem reveal left<CR>', {})
end
}