Colorschema Base16 Dark & Diable Nerdtree

This commit is contained in:
Elmar Sönser 2021-11-30 19:44:13 +01:00
parent e6d21a69ea
commit c0ac63661e
2 changed files with 11 additions and 6 deletions

@ -0,0 +1 @@
Subproject commit 6191622d5806d4448fa2285047936bdcee57a098

16
.vimrc
View file

@ -89,8 +89,9 @@ Plug 'https://git.gc4.at/linux/vim-easy-align' "Plug 'junegunn/vim-easy-align'
Plug 'https://git.gc4.at/linux/vim-one' "Plug 'rakr/vim-one'
Plug 'https://git.gc4.at/linux/vim-code-dark' "Plug 'tomasiser/vim-code-dark'
Plug 'https://git.gc4.at/linux/nerdtree' "Plug 'scrooloose/nerdtree'
Plug 'https://git.gc4.at/linux/vim-airline' "Plugin 'vim-airline/vim-airline'
Plug 'https://git.gc4.at/linux/vim-airline-themes' "Plugin 'vim-airline/vim-airline-themes'
Plug 'https://git.gc4.at/linux/vim-airline' "Plug 'vim-airline/vim-airline'
Plug 'https://git.gc4.at/linux/vim-airline-themes' "Plug 'vim-airline/vim-airline-themes'
Plug 'https://git.gc4.at/linux/base16-vim' "Plug 'chriskempson/base16-vim'
call plug#end()
"Easy Align
@ -99,10 +100,10 @@ nmap ga <Plug>(EasyAlign)
" NerdTree File Browser
" Start NERDTree. If a file is specified, move the cursor to its window.
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif
"autocmd StdinReadPre * let s:std_in=1
"autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif
" Exit Vim if NERDTree is the only window remaining in the only tab.
autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
"autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
" Airline Statusbar
let g:airline_theme='codedark'
@ -129,8 +130,11 @@ if (empty($TMUX))
endif
endif
" Color Schema Base 16 Dark (=Atom)
colorscheme base16-default-dark
" Color Schema CodeDark
colorscheme codedark
"colorscheme codedark
" Color Schema One
"colorscheme one