commit 51e19ec2c2763302470da19c0e7a8306b3e5f1f1
parent ffbfe81590eec7d5d9857630583eb36d110f7782
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:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/.vim/vimrc b/.vim/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