Moved Neo-tree config: init -> Spec file

This commit is contained in:
Daveanand Mannie
2024-08-25 12:42:57 -04:00
parent 4cb50cdbe9
commit b2f6d56e09
3 changed files with 19 additions and 13 deletions

View File

@@ -4,21 +4,9 @@ require("config.lazy")
-- colourscheme
vim.cmd("colorscheme wildcharm")
-- styling cuz im dumb and dont really know what im doing with this conifg
-- increase the time before whichkey pops up
vim.o.timeoutlen = 1400
-- show hidden files in neo tree
require('neo-tree').setup{
filesystem = {
filtered_items = {
hide_dotfiles = false,
hide_gitignored = false,
hide_hidden = false
},
}
}
--tab auto complete
local cmp = require'cmp'

View File

@@ -25,7 +25,7 @@
"mini.ai": { "branch": "main", "commit": "a9b992b13d22a8db8df6beac25afa59a10b5584d" },
"mini.icons": { "branch": "main", "commit": "12e7b5d47bfc1b4c5ba4278fb49ec9100138df14" },
"mini.pairs": { "branch": "main", "commit": "927d19cbdd0e752ab1c7eed87072e71d2cd6ff51" },
"neo-tree.nvim": { "branch": "main", "commit": "206241e451c12f78969ff5ae53af45616ffc9b72" },
"neo-tree.nvim": { "branch": "v3.x", "commit": "29f7c215332ba95e470811c380ddbce2cebe2af4" },
"noice.nvim": { "branch": "main", "commit": "448bb9c524a7601035449210838e374a30153172" },
"nui.nvim": { "branch": "main", "commit": "61574ce6e60c815b0a0c4b5655b8486ba58089a1" },
"nvim-cmp": { "branch": "main", "commit": "ae644feb7b67bf1ce4260c231d1d4300b19c6f30" },

18
lua/plugins/neo-tree.lua Normal file
View File

@@ -0,0 +1,18 @@
return {
"nvim-neo-tree/neo-tree.nvim",
branch = "main",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons",
"MunifTanjim/nui.nvim",
},
opts = {
filesystem = {
filtered_items = {
hide_dotfiles = false,
hide_gitignored = false,
hide_hidden = false,
},
},
},
}