some more .vimrc stuff for testing
This commit is contained in:
parent
eaae25ae8d
commit
dfd6f996db
1 changed files with 7 additions and 0 deletions
7
.vimrc
7
.vimrc
|
|
@ -17,6 +17,9 @@ if has("autocmd")
|
||||||
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
" Set the clipboard so all vim instances share the same copy/paste buffer
|
||||||
|
set clipboard=unnamed
|
||||||
|
|
||||||
" Enable syntax highlighting
|
" Enable syntax highlighting
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
|
|
@ -38,6 +41,10 @@ augroup CursorLine
|
||||||
au InsertLeave * setlocal cursorline
|
au InsertLeave * setlocal cursorline
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
|
||||||
|
" 256 bit color support
|
||||||
|
set t_Co=256
|
||||||
|
|
||||||
" Set 'nocompatible' to ward off unexpected things that your distro might
|
" Set 'nocompatible' to ward off unexpected things that your distro might
|
||||||
" have made, as well as sanely reset options when re-sourcing .vimrc
|
" have made, as well as sanely reset options when re-sourcing .vimrc
|
||||||
set nocompatible
|
set nocompatible
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue