mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
vim nerdtree: add devicons and git
This commit is contained in:
parent
cc710c1870
commit
b0c1e697b8
2 changed files with 10 additions and 1 deletions
|
@ -12,12 +12,19 @@
|
|||
coc-nvim
|
||||
coc-tsserver
|
||||
nerdtree
|
||||
nerdtree-git-plugin
|
||||
vim-autoformat
|
||||
vim-code-dark
|
||||
vim-devicons
|
||||
vim-gitgutter
|
||||
vim-nix
|
||||
vim-startify
|
||||
];
|
||||
] ++
|
||||
# skip syntax-highlight on nixos 23.05
|
||||
lib.optional
|
||||
(vim-nerdtree-syntax-highlight.version != "2021-01-11")
|
||||
(vim-nerdtree-syntax-highlight);
|
||||
|
||||
customRC = ''
|
||||
source ${./init.vim}
|
||||
luafile ${./init.lua}
|
||||
|
|
|
@ -24,6 +24,8 @@ let g:startify_custom_header = "''"
|
|||
let g:startify_custom_indices = map(range(1,100), 'string(v:val)')
|
||||
|
||||
let NERDTreeMinimalUI=1
|
||||
let g:NERDTreeExtensionHighlightColor = {}
|
||||
let g:NERDTreeExtensionHighlightColor['nix'] = "689FB6"
|
||||
|
||||
|
||||
"auto formatting
|
||||
|
|
Loading…
Reference in a new issue