Skip to content

Commit

Permalink
Neovim: Fix odd block pasting behaviour
Browse files Browse the repository at this point in the history
This is a issue in neovim when using the system clipboard. See [this
issue](neovim/neovim#1822)
Good chanche to try out the nvim-miniyank plugin!
  • Loading branch information
Fmancino committed Jul 18, 2018
1 parent ddf7d31 commit da9fccc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions config/nvim/init.vim
Expand Up @@ -51,7 +51,16 @@ Plug 'tpope/vim-dispatch'
Plug 'radenling/vim-dispatch-neovim'
Plug 'vim-python/python-syntax'
Plug 'python-mode/python-mode', { 'branch': 'develop' }
Plug 'bfredl/nvim-miniyank'
call plug#end()


map p <Plug>(miniyank-autoput)
map P <Plug>(miniyank-autoPut)
map <leader>x <Plug>(miniyank-cycle)
map <Leader>c <Plug>(miniyank-tochar)
map <Leader>l <Plug>(miniyank-toline)
map <Leader>b <Plug>(miniyank-toblock)
" for python-syntax
let g:python_highlight_all = 1

0 comments on commit da9fccc

Please sign in to comment.