From 1ceb1e4ccb84e2977520dc9e192ece4cdb6a11c1 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Sat, 8 Aug 2020 08:50:34 +0000 Subject: [PATCH] Move settings around, remove colorcolumn. --- config.vim | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) 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