vim

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

commit 836f50fbd6f29cc02480870684150ffeecdb9ebb
parent c8fb0e7104ce8f94b8a4494619488e7930a03c01
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue, 17 Oct 2017 10:17:22 -0700

Revert to vim-one colour scheme

Also reverts "Eliminate Visual ctermbg override"

This reverts commit c8fb0e7104ce8f94b8a4494619488e7930a03c01.
This reverts commit 8e81610ee6cac9f72273f8c1e02703f49a50885c.

Diffstat:
Mvimrc | 12+++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/vimrc b/vimrc @@ -5,7 +5,7 @@ filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' -Plugin 'cbracken/nofrils' " Colour scheme +Plugin 'cbracken/vim-one' " Colour scheme Plugin 'spacehi.vim' " Highlight bad whitespace " Language support @@ -100,11 +100,14 @@ let g:syntastic_go_checkers = ["go", "golint", "errcheck"] if &t_Co > 2 || has("gui_running") syntax enable set background=dark - colorscheme nofrils-dark + colorscheme one " No background colour in terminal hi Normal ctermbg=none + " Visual selection colour + hi Visual ctermbg=237 + " Spelling mistake hightlight colour hi SpellLocal cterm=underline ctermbg=58 hi SpellBad cterm=underline ctermbg=88 @@ -112,8 +115,11 @@ if &t_Co > 2 || has("gui_running") " Completion menu colour hi Pmenu ctermbg=grey - " Highlight cursor line + " Highlight cursor line, max column set cursorline + hi ColorColumn guibg=grey24 ctermbg=235 + hi CursorLine guibg=grey24 ctermbg=235 cterm=bold + if has("autocmd") " Cursor line highlighting