neovim tree
This commit is contained in:
parent
3255999802
commit
bb635eb45a
|
@ -62,3 +62,6 @@ keymap("n", "<leader>s", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]],
|
|||
|
||||
-- Git
|
||||
keymap('n', '<Leader>gg', ':LazyGit<CR>', default_ops)
|
||||
|
||||
-- File Explorer
|
||||
keymap('n', '<Leader>e', ':NeoTreeShowToggle<CR>', default_ops)
|
||||
|
|
|
@ -138,6 +138,18 @@ return require('packer').startup(function(use)
|
|||
enable = false,
|
||||
}
|
||||
}
|
||||
|
||||
-- file ex
|
||||
use {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
branch = "v2.x",
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||
"MunifTanjim/nui.nvim",
|
||||
}
|
||||
}
|
||||
|
||||
end
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue