[change] add colorscheme and neo-tree lua

pull/94/head
smith.hu 2023-09-22 08:19:28 +08:00
parent a13d5c9076
commit 5db3074d5d
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
-- add gruvbox
-- { "ellisonleao/gruvbox.nvim" },
-- Configure LazyVim to load gruvbox
{
"LazyVim/LazyVim",
opts = {
colorscheme = "quiet",
},
},
}

View File

@ -0,0 +1,19 @@
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
filesystem = {
filtered_items = {
visible = true,
show_hidden_count = true,
hide_dotfiles = false,
hide_gitignored = true,
hide_by_name = {
".git",
-- '.DS_Store',
-- 'thumbs.db',
},
never_show = {},
},
},
},
}