mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
[change] add colorscheme and neo-tree lua
This commit is contained in:
parent
a13d5c9076
commit
5db3074d5d
2 changed files with 31 additions and 0 deletions
12
lua/plugins/colorscheme.lua
Normal file
12
lua/plugins/colorscheme.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
return {
|
||||||
|
-- add gruvbox
|
||||||
|
-- { "ellisonleao/gruvbox.nvim" },
|
||||||
|
|
||||||
|
-- Configure LazyVim to load gruvbox
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "quiet",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
19
lua/plugins/neo-tree.lua
Normal file
19
lua/plugins/neo-tree.lua
Normal 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 = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue