vim

vim config files
git clone https://git.bracken.jp/vim.git
Log | Files | Refs | LICENSE

commit 974d9c3d9165a456d530299624a2198696af0b43
parent d736f739763e5e4187066ff102f853884bf787fe
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 25 Jan 2019 17:57:58 -0800

Stop using custom colour scheme

Stop using vim-one. Instead, override default line number colours.

Diffstat:
Mvimrc | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/vimrc b/vimrc @@ -5,7 +5,6 @@ filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' -Plugin 'cbracken/vim-one' " Colour scheme Plugin 'spacehi.vim' " Highlight bad whitespace " Language support @@ -118,7 +117,6 @@ let g:syntastic_go_checkers = ["go", "golint", "errcheck"] if &t_Co > 2 syntax enable set background=dark - colorscheme one " No background colour in terminal hi Normal ctermbg=none @@ -139,6 +137,10 @@ if &t_Co > 2 hi ColorColumn guibg=grey24 ctermbg=235 hi CursorLine guibg=grey24 ctermbg=235 cterm=bold + " Line numbers + hi LineNr ctermfg=7 + hi CursorLineNr ctermfg=15 + if has("autocmd") " Cursor line highlighting au WinLeave * setlocal nocursorline