Refactor contents to be compatible with GNU Stow
This commit is contained in:
parent
c931ac6aae
commit
e23e66f801
116 changed files with 6 additions and 100 deletions
22
.config/nvim/lua/plugins/neotree.lua
Normal file
22
.config/nvim/lua/plugins/neotree.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
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", opts = {}}, -- Optional image support in preview window: See `# Preview Mode` for more information
|
||||
},
|
||||
lazy = false, -- neo-tree will lazily load itself
|
||||
opts = {
|
||||
filesystem = {
|
||||
filtered_items = {
|
||||
visible = true,
|
||||
-- hide_dotfiles = false,
|
||||
hide_by_name = {
|
||||
'.git'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue