From c0ac63661e6b8ab84ab1e57d2fa0ddcf18ddb643 Mon Sep 17 00:00:00 2001 From: karamelmar Date: Tue, 30 Nov 2021 19:44:13 +0100 Subject: [PATCH] Colorschema Base16 Dark & Diable Nerdtree --- .vim/plugged/base16-vim | 1 + .vimrc | 16 ++++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 160000 .vim/plugged/base16-vim diff --git a/.vim/plugged/base16-vim b/.vim/plugged/base16-vim new file mode 160000 index 0000000..6191622 --- /dev/null +++ b/.vim/plugged/base16-vim @@ -0,0 +1 @@ +Subproject commit 6191622d5806d4448fa2285047936bdcee57a098 diff --git a/.vimrc b/.vimrc index f61bc86..3e21dac 100644 --- a/.vimrc +++ b/.vimrc @@ -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 (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