aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorCamil Staps2016-10-03 18:00:16 +0200
committerCamil Staps2016-11-30 19:11:44 +0100
commit9d775c243334ff35902be96a772afb2e25a9dc7a (patch)
treec31450ccea72517a755d60c446fdf1272e06432a /vim
parentAdded vim-bb (diff)
Vim: colorcolumn in yellow
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc.symlink7
1 files changed, 4 insertions, 3 deletions
diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink
index 1f75d2b..184f69e 100644
--- a/vim/vimrc.symlink
+++ b/vim/vimrc.symlink
@@ -45,12 +45,16 @@ set dir=~/.swp
set listchars=nbsp:¬,tab:▸\ ,extends:»,precedes:«,trail:•
set nolist
+filetype plugin indent on
+syntax enable
+
" Colours & Highlighting
colorscheme morning
highlight SpellBad cterm=underline,bold ctermfg=black ctermbg=red
highlight SpellCap cterm=underline,bold ctermfg=black ctermbg=yellow
highlight SpellLocal cterm=underline,bold ctermfg=black ctermbg=blue
highlight SpellRare cterm=underline,bold ctermfg=black ctermbg=white
+highlight ColorColumn ctermfg=black ctermbg=yellow
" Move through long lines as they were short multiple lines
map j gj
@@ -58,9 +62,6 @@ map <down> j
map k gk
map <up> k
-filetype plugin indent on
-syntax enable
-
command! -nargs=1 Silent
\ | execute ':silent '.<q-args>
\ | execute ':redraw!'