LFG!
This commit is contained in:
parent
29c77cd7e5
commit
f5b59f5173
11 changed files with 363 additions and 406 deletions
17
lua/custom/plugins/filetree.lua
Normal file
17
lua/custom/plugins/filetree.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
-- Unless you are still migrating, remove the deprecated commands from v1.x
|
||||
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
|
||||
|
||||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
version = "*",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||
"MunifTanjim/nui.nvim",
|
||||
},
|
||||
config = function()
|
||||
require('neo-tree').setup {}
|
||||
|
||||
vim.keymap.set('n', '<leader>a', [[:Neotree toggle reveal_force_cwd<cr>]])
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue