aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
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!'