neotree
This commit is contained in:
parent
47be0540ec
commit
2bddc423c7
12
init.lua
12
init.lua
|
|
@ -347,6 +347,17 @@ require('lazy').setup({
|
||||||
'nvim-tree/nvim-web-devicons',
|
'nvim-tree/nvim-web-devicons',
|
||||||
},
|
},
|
||||||
lazy = false,
|
lazy = false,
|
||||||
|
opts = {
|
||||||
|
filesystem = {
|
||||||
|
visible = true,
|
||||||
|
window = {
|
||||||
|
mappings = {
|
||||||
|
['.'] = 'set_root', -- Set current directory as root
|
||||||
|
['H'] = 'toggle_hidden', -- Toggle hidden files with 'H'
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
-- NOTE: Plugins can also be configured to run Lua code when they are loaded.
|
-- NOTE: Plugins can also be configured to run Lua code when they are loaded.
|
||||||
--
|
--
|
||||||
|
|
@ -951,7 +962,6 @@ require('lazy').setup({
|
||||||
signature = { enabled = true },
|
signature = { enabled = true },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
{ -- You can easily change to a different colorscheme.
|
{ -- You can easily change to a different colorscheme.
|
||||||
-- Change the name of the colorscheme plugin below, and then
|
-- Change the name of the colorscheme plugin below, and then
|
||||||
-- change the command in the config to whatever the name of that colorscheme is.
|
-- change the command in the config to whatever the name of that colorscheme is.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue