Removed the gvim part from vimrc

gvim-specific configuration will be stored in a dedicated file
This commit is contained in:
fedora 2019-05-21 03:29:08 +02:00
parent f3f126db34
commit 9fffff4a06
Signed by: wanderer
GPG Key ID: 7B28D8DC28BD2388

24
vimrc

@ -145,30 +145,6 @@ set scs " override 'ignorecase' when pattern has upper cas
":highlight clear CursorLine " Remove the underline from enabling cursorline
":highlight CursorLineNR ctermbg=darkgrey " Set line numbering to red background
" gvim bits
if (&t_Co > 2 || has("gui_running"))
"if has("gui_running")
if has("gui_gtk2")
:set guifont=Source\ Code\ Pro\ 11
:syntax on
:set background=dark
:colo evening
elseif has("gui_gtk3")
:set guifont=Source\ Code\ Pro\ 11
:set background=dark
:syntax on
:colo evening
endif
" Change the highlight color for Comment and Special
" to Cyan. Blue is too dark for a black background.
"
":highlight Comment term=bold ctermfg=cyan guifg=cyan
":highlight Special term=bold ctermfg=cyan guifg=cyan
":highlight Constant term=bold ctermfg=red guifg=cyan
endif
:set laststatus=2 " show powerline status bar
set t_Co=256
let g:Powerline_symbols = "fancy" " sth like this probably set as a default but won't hurt here