mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-03-06 14:01:39 +00:00
Feat: nvim neo-tree configuration
This commit is contained in:
@@ -36,6 +36,27 @@ return {
|
|||||||
luasnip.filetype_extend("javascript", { "javascriptreact" })
|
luasnip.filetype_extend("javascript", { "javascriptreact" })
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"nvim-neo-tree/neo-tree.nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
require "plugins.neo-tree"
|
||||||
|
opts.filesystem.filtered_items = {
|
||||||
|
visible = false,
|
||||||
|
show_hidden_count = true,
|
||||||
|
hide_dotfiles = false,
|
||||||
|
hide_gitignored = true,
|
||||||
|
hide_by_name = {
|
||||||
|
},
|
||||||
|
never_show = {
|
||||||
|
'.git',
|
||||||
|
'.DS_Store',
|
||||||
|
'thumbs.db'
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
return opts
|
||||||
|
end,
|
||||||
|
},
|
||||||
-- {
|
-- {
|
||||||
-- "windwp/nvim-autopairs",
|
-- "windwp/nvim-autopairs",
|
||||||
-- config = function(plugin, opts)
|
-- config = function(plugin, opts)
|
||||||
|
|||||||
Reference in New Issue
Block a user