mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-09 20:45:02 +02:00
feat: add monokai colorscheme and nvim-tree plugin configuration
This commit is contained in:
parent
d350db2449
commit
d7348e755b
3 changed files with 66 additions and 4 deletions
16
lua/kickstart/plugins/nvim-tree.lua
Normal file
16
lua/kickstart/plugins/nvim-tree.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
require('nvim-tree').setup {
|
||||
sort = {
|
||||
sorter = 'case_sensitive',
|
||||
folders_first = true,
|
||||
files_first = false,
|
||||
},
|
||||
view = {
|
||||
width = 30,
|
||||
},
|
||||
renderer = {
|
||||
group_empty = true,
|
||||
},
|
||||
filters = {
|
||||
dotfiles = true,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue