mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +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-nvim
|
||||||
coc-tsserver
|
coc-tsserver
|
||||||
nerdtree
|
nerdtree
|
||||||
|
nerdtree-git-plugin
|
||||||
vim-autoformat
|
vim-autoformat
|
||||||
vim-code-dark
|
vim-code-dark
|
||||||
|
vim-devicons
|
||||||
vim-gitgutter
|
vim-gitgutter
|
||||||
vim-nix
|
vim-nix
|
||||||
vim-startify
|
vim-startify
|
||||||
];
|
] ++
|
||||||
|
# skip syntax-highlight on nixos 23.05
|
||||||
|
lib.optional
|
||||||
|
(vim-nerdtree-syntax-highlight.version != "2021-01-11")
|
||||||
|
(vim-nerdtree-syntax-highlight);
|
||||||
|
|
||||||
customRC = ''
|
customRC = ''
|
||||||
source ${./init.vim}
|
source ${./init.vim}
|
||||||
luafile ${./init.lua}
|
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 g:startify_custom_indices = map(range(1,100), 'string(v:val)')
|
||||||
|
|
||||||
let NERDTreeMinimalUI=1
|
let NERDTreeMinimalUI=1
|
||||||
|
let g:NERDTreeExtensionHighlightColor = {}
|
||||||
|
let g:NERDTreeExtensionHighlightColor['nix'] = "689FB6"
|
||||||
|
|
||||||
|
|
||||||
"auto formatting
|
"auto formatting
|
||||||
|
|
Loading…
Reference in a new issue