From 83312a3ed67b2dd503cfc1ec560f9c1985a45cfe Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 7 Feb 2016 11:06:37 -0800 Subject: [PATCH] [vim] Clean up the vimrc and tweak some highlights --- vimrc | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/vimrc b/vimrc index 9a0d5d8..b5cce51 100644 --- a/vimrc +++ b/vimrc @@ -126,7 +126,7 @@ set copyindent " copy previous indentation on autoindent set scrolloff=3 " scroll 3 lines ahead of point set sidescrolloff=5 " scroll 5 columns ahead of point -set pastetoggle= " toggle paste mode with F12 +set pastetoggle= " toggle paste mode with F12 " completion menu set wildmenu @@ -167,9 +167,9 @@ set bg=dark " Try to use the solarized colorscheme if the terminal can support it let g:solarized_termtrans = 0 " transparent terminals let g:solarized_visibility = 'low' " visibility of list chars -try - colorscheme solarized -endtry +"try +" colorscheme solarized +"endtry " Empty snipmate options dictionary let g:snipMate = {} @@ -319,6 +319,13 @@ nnoremap gV `[v`] " Don't underline folded lines highlight Folded cterm=bold term=bold ctermfg=NONE ctermbg=NONE +" Line numbers are a touch darker... +highlight LineNr ctermfg=8 ctermbg=0 + +" Don't underline the CursorLine in color terminals; use dark black. +highlight CursorLine term=underline cterm=NONE ctermbg=0 +highlight CursorLineNr term=underline cterm=NONE ctermfg=7 ctermbg=0 + " Autocommands {{{ if has('autocmd') filetype plugin indent on