Decentralize nvim config

This commit is contained in:
ItsDrike 2021-07-23 18:08:03 +02:00
parent 5e0fcc415b
commit cc74d65b0a
No known key found for this signature in database
GPG key ID: B5F6B41F708C3ADD
9 changed files with 192 additions and 140 deletions

View file

@ -0,0 +1,12 @@
" NERDTree config
map <C-n> :NERDTreeToggle<CR>
let g:NERDTreeDirArrowExpandable = '►'
let g:NERDTreeDirArrowCollapsible = '▼'
let NERDTreeShowLineNumbers=1
let NERDTreeShowHidden=1
let NERDTreeMinimalUI = 1
let g:NERDTreeWinSize=38
if empty($DISPLAY) " Disable devicons for nerdtree in TTY
let g:webdevicons_enable_nerdtree = 0
endif