Added clipboard keybinds
This commit is contained in:
parent
5bb4fda4d2
commit
a298a84123
|
@ -37,6 +37,7 @@ endfunction
|
||||||
" Brief Config:
|
" Brief Config:
|
||||||
" -> Sane Config Base
|
" -> Sane Config Base
|
||||||
" -> Leader Key
|
" -> Leader Key
|
||||||
|
" -> Clip
|
||||||
" -> Has Async Var
|
" -> Has Async Var
|
||||||
|
|
||||||
" Sane Config Based on Tpope's Vim-Sensible
|
" Sane Config Based on Tpope's Vim-Sensible
|
||||||
|
@ -46,6 +47,12 @@ source ~/.vim/vimrc.d/sensible.vim
|
||||||
" Take me to your leader
|
" Take me to your leader
|
||||||
let mapleader=","
|
let mapleader=","
|
||||||
|
|
||||||
|
" Clipboard
|
||||||
|
" This requires +clipboard to be included in the compile.
|
||||||
|
nnoremap Y "+y
|
||||||
|
vnoremap Y "+y
|
||||||
|
nnoremap yY ^"+y$
|
||||||
|
|
||||||
" Added Async Var
|
" Added Async Var
|
||||||
let g:has_async = v:version >= 800 || has('nvim')
|
let g:has_async = v:version >= 800 || has('nvim')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user