From 3729c600c69fbbff4c85dab446b2dfd058e410d1 Mon Sep 17 00:00:00 2001 From: Titouan Rigoudy Date: Sat, 9 Jan 2021 17:31:41 +0100 Subject: [PATCH] Clean up vim config. --- config.vim | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/config.vim b/config.vim index 98c22cc..680183f 100644 --- a/config.vim +++ b/config.vim @@ -34,12 +34,14 @@ set smarttab " Tabs should look like 2 spaces. set tabstop=2 -set ai "Auto indent -set si "Smart indent -set wrap "Wrap lines +" Auto-indent and smart indent can help for unknown file types. +set ai +set si +" Wrap lines that are too long. +set wrap "Wrap lines -" Enable syntax highlighting per file-type. +" Enable syntax highlighting and indentation per file-type. syntax enable filetype plugin on filetype indent on