diff --git a/config.vim b/config.vim index ee93c77..98c22cc 100644 --- a/config.vim +++ b/config.vim @@ -10,8 +10,6 @@ " Always show the current cursor position. set ruler -" Show the 80 character column. -set colorcolumn=80 " Show line numbers. set number @@ -41,6 +39,12 @@ set si "Smart indent set wrap "Wrap lines +" Enable syntax highlighting per file-type. +syntax enable +filetype plugin on +filetype indent on + + " Performance/misc options. " Don't make annoying sounds on errors. @@ -63,13 +67,6 @@ set nobackup set nowb set noswapfile -" Enable syntax highlighting. -syntax enable - -" Enable filetype plugins. -filetype plugin on -filetype indent on - " Make moving around tabs and windows work like tmux. " Normal mode shortcuts. We use nmap instead of nnoremap because there shouldn't