diff options
-rw-r--r-- | vim/.vim/colors/akr.vim | 2 | ||||
-rw-r--r-- | vim/.vimrc | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/vim/.vim/colors/akr.vim b/vim/.vim/colors/akr.vim index c10903a..c5dd59f 100644 --- a/vim/.vim/colors/akr.vim +++ b/vim/.vim/colors/akr.vim @@ -8,7 +8,7 @@ hi NonText gui=NONE guifg=#161616 guibg=#161616 hi LineNr gui=NONE guifg=#605c5a guibg=NONE hi Cursor gui=reverse guifg=NONE guibg=NONE hi CursorColumn gui=NONE guifg=NONE guibg=#000000 -hi CursorLine gui=NONE guifg=NONE guibg=#161616 +hi CursorLine gui=NONE guifg=NONE guibg=#212121 hi CursorLineNr gui=NONE guifg=#aadb0f guibg=#212121 hi ColorColumn gui=NONE guifg=NONE guibg=#aadb0f hi SignColumn gui=NONE guifg=NONE guibg=#aadb0f @@ -5,8 +5,8 @@ filetype plugin indent on set encoding=utf-8 set showcmd set nocompatible +set nocursorline set number -set cursorline set lazyredraw set ttyfast set mouse=a @@ -75,3 +75,4 @@ let g:gitgutter_highlight_lines = 1 nnoremap <F5> :GundoToggle<CR> nnoremap <F6> :GitGutterToggle<CR> +nnoremap <F7> :set cursorline!<CR> |