diff options
-rw-r--r-- | plugin/vim-options.vim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 3e651e2..7260497 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -21,8 +21,6 @@ set backspace=2 " Make backspace work like most other programs set hidden " Allow hidden buffers, no complain about unsaved work set nostartofline " Don't jump cursor to start of line set spelllang=en_ca " Set spelling language to Canadian English -set clipboard=unnamedplus " Use the system clipboard - " Custom status line set statusline= @@ -69,7 +67,7 @@ endif " Set leader let mapleader="\<Space>" " For easier copying -nnoremap <leader>y :call system('nc -w 1 127.0.0.1 41401', @0)<CR> +nnoremap <leader>y :let @+=@0<CR> " type jj to get out of insert mode inoremap jj <ESC> " Ctags for python project |