- vim ui changes: line numbers, hilight cursor line

- add monokai.vim vim colorscheme
This commit is contained in:
2016-07-15 16:41:16 +02:00
parent dda0c5ff77
commit df1a2f81f5
2 changed files with 123 additions and 1 deletions

15
.vimrc
View File

@@ -61,6 +61,12 @@ let g:mapleader = ","
" Fast saving
nmap <leader>w :w!<cr>
" show line numbers
set number
" show cursor line
set cursorline
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => VIM user interface
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@@ -123,9 +129,16 @@ set tm=500
syntax enable
colorscheme desert
"colorscheme hybrid-light
"colorscheme monokai
"colorscheme hybrid
"set background=dark
" set line number color
hi LineNr ctermfg=102 ctermbg=237 cterm=NONE guifg=#90908a guibg=#3c3d37 gui=NONE
" set cursor line color
hi CursorLine ctermfg=NONE ctermbg=237 cterm=NONE guifg=NONE guibg=#3c3d37 gui=NONE
" Set extra options when running in GUI mode
if has("gui_running")
set guioptions-=T