chore(home-manager): put neovim plugins configuration in a separate directory
This commit is contained in:
parent
a8c87655ac
commit
d9aecb3e19
16 changed files with 13 additions and 84 deletions
20
modules/home-manager/cli/neovim/files/plugins/neotree.lua
Normal file
20
modules/home-manager/cli/neovim/files/plugins/neotree.lua
Normal file
|
@ -0,0 +1,20 @@
|
|||
local neotree = require 'neo-tree'
|
||||
neotree.setup({
|
||||
close_if_last_window = true,
|
||||
filesystem = {
|
||||
filtered_items = {
|
||||
-- when true, they will just be displayed differently
|
||||
-- than normal items
|
||||
visible = false,
|
||||
hide_dotfiles = false,
|
||||
hide_gitignored = true,
|
||||
},
|
||||
follow_current_file = {
|
||||
-- follow file in current buffer even iof the file is
|
||||
-- loaded while tree is open
|
||||
enabled = true,
|
||||
-- do not autoclose expanded dirs
|
||||
leave_dirs_open = true,
|
||||
},
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue