diff options
-rw-r--r-- | vimrc | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -3,6 +3,7 @@ set nocompatible " vim native mode syntax on " enable syntax highlighting colorscheme elektranox " cool colors +set clipboard=unnamedplus " use X11 clipboard for copy/paste set hlsearch " highlight searched word set number " numberize lines set ruler " lower file @@ -134,9 +135,5 @@ filetype plugin on " git branch in ruler set rulerformat=%33(%{fugitive#statusline()}%=%10(%l,%c%V%=%5(%p%%%)%)%) -" copy & paste -vmap <C-c> y: call system("xclip -i -selection clipboard", getreg("\""))<CR> -nmap <C-v> :call setreg("\"",system("xclip -o -selection clipboard"))<CR>p - " debian/control indents must be spaces autocmd FileType debcontrol set expandtab |