From dfd6f996dba7d3fda8dc284dc250907385eab033 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Sun, 28 Jun 2015 17:36:58 +0200 Subject: [PATCH] some more .vimrc stuff for testing --- .vimrc | 7 +++++++ 1 file changed, 7 insertions(+) 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