diff --git a/.vimrc b/.vimrc index 0f01069d..96316f2d 100644 --- a/.vimrc +++ b/.vimrc @@ -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