Browse Source

Move settings around, remove colorcolumn.

main
Titouan Rigoudy 5 years ago
parent
commit
1ceb1e4ccb
1 changed files with 6 additions and 9 deletions
  1. +6
    -9
      config.vim

+ 6
- 9
config.vim View File

@ -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


Loading…
Cancel
Save