From 7b3c4ed2593c1d69cf3175f1f7196a3b222976d0 Mon Sep 17 00:00:00 2001
From: Max Christian Pohle
Date: Mon, 8 May 2017 01:06:31 +0200
Subject: Improved transparency

---
 vimrc-full | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

(limited to 'vimrc-full')

diff --git a/vimrc-full b/vimrc-full
index 1ab7ab1..9fc1857 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -43,7 +43,7 @@ nnoremap <F12> :ToggleBufExplorer<CR>
 Plug 'vim-airline/vim-airline'                        | " beautification of the mode line
 set laststatus=2                                      | " required by AirLine, without status line does not appear until a window split
 set background=light
-let g:airline_extensions                         = ['tabline', 'branch', 'syntastic', 'tagbar', 'whitespace', 'ycm']
+let g:airline_extensions                         = ['tabline', 'branch', 'syntastic', 'tagbar', 'whitespace']
 let b:airline_whitespace_checks                  = ['indent', 'trailing', 'long', 'mixed-indent-file']
 " let g:airline_section_c                          = ""     | " was: %F
 let g:airline#extensions#tagbar#flags            = 'f'    | " even though the airline extension is off this controls :h tagbar-extend
@@ -65,7 +65,7 @@ let g:airline_powerline_fonts                    = 1 |
 let g:airline_skip_empty_sections                = 1 |
 " AIRLINE_Theme:
 Plug 'vim-airline/vim-airline-themes'                | " airline themes to match any light and dark terminal using :AirlineTheme
-let base16colorspace = 256
+let base16colorspace=256
 let g:airline_theme='base16'                   | " specifies which colorscheme should airline uses
 " let g:solarized_base16 = 1
 " let g:airline_base16_improved_contrast = 1
@@ -94,8 +94,6 @@ nnoremap <expr>
 " autocmd bufenter *
 "       \ if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
 "
-" exec current line as a command, insert output of command (from: https://youtu.be/MquaityA1SM?t=35m45s)
-nnoremap Q !!$SHELL<CR>
 
 
 " Additional: ========================================.
@@ -215,13 +213,12 @@ call plug#end()                                       | " all plugins are gettin
 
 
 " COLORSCHEME:
-
 " uses the default terminal background color as background (allows transparency)
-
-
 function! ExtendColorTheme()
-  " highlight! Normal ctermbg=NONE ctermfg=black cterm=inverse
-  highlight! Normal ctermbg=NONE
+  set background=light
+  let g:colors_name=""
+  " highlight Normal ctermbg=NONE ctermfg=black
+
   highlight! CursorLineNr cterm=inverse | " ctermbg=black ctermfg=NONE
   highlight! Pmenu ctermbg=LightYellow ctermfg=blue guibg=LightYellow guifg=blue cterm=italic
   highlight! PmenuSel ctermbg=LightYellow ctermfg=blue guibg=LightYellow guifg=blue gui=inverse cterm=inverse
@@ -524,7 +521,7 @@ if has("autocmd")
 
 
   augroup extra_whitespace " {
-    highlight ExtraWhitespace ctermbg=red guibg=red
+    highlight ExtraWhitespace ctermbg=red ctermfg=white guibg=red
     autocmd BufEnter * syn match ExtraWhitespace /\s\+$/
   augroup END "}
 
@@ -537,6 +534,9 @@ if has("autocmd")
     " put the current files name after the cursor...
     let @f = ":exe ':normal a'.expand('%:t')"
 
+    " exec current line as a command, insert output of command (from: https://youtu.be/MquaityA1SM?t=35m45s)
+    nnoremap Q !!$SHELL<CR>
+
     " autocmd BufEnter * @f
   augroup END
 
-- 
cgit v1.2.3