adding additional plugins
This commit is contained in:
parent
7b00b4cf60
commit
66c760bf9a
13 changed files with 616 additions and 437 deletions
16
lua/plugins/neotree.lua
Normal file
16
lua/plugins/neotree.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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",
|
||||
-- "3rd/image.nvim", -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||
},
|
||||
config = function()
|
||||
-- NeoTree Settings
|
||||
vim.keymap.set('n', '<C-n>', ':Neotree filesystem reveal left<cr>')
|
||||
end
|
||||
}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue