some more .vimrc stuff for testing

This commit is contained in:
Johannes Findeisen 2015-06-28 17:36:58 +02:00
commit dfd6f996db

7
.vimrc
View file

@ -17,6 +17,9 @@ if has("autocmd")
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif
" Set the clipboard so all vim instances share the same copy/paste buffer
set clipboard=unnamed
" Enable syntax highlighting
syntax on
@ -38,6 +41,10 @@ augroup CursorLine
au InsertLeave * setlocal cursorline
augroup END
" 256 bit color support
set t_Co=256
" Set 'nocompatible' to ward off unexpected things that your distro might
" have made, as well as sanely reset options when re-sourcing .vimrc
set nocompatible