Browse Source

Clean up vim config.

main
Titouan Rigoudy 4 years ago
parent
commit
3729c600c6
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      config.vim

+ 6
- 4
config.vim View File

@ -34,12 +34,14 @@ set smarttab
" Tabs should look like 2 spaces. " Tabs should look like 2 spaces.
set tabstop=2 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 syntax enable
filetype plugin on filetype plugin on
filetype indent on filetype indent on


Loading…
Cancel
Save