mirror of https://github.com/akelge/vim
Fix some small things with gvim
disable clipboard=unnamed on gvim
This commit is contained in:
parent
66171b1332
commit
693c33d958
3
gvimrc
3
gvimrc
|
@ -24,6 +24,7 @@ set showtabline=2
|
||||||
set guitablabel=%!GuiTabLabel()
|
set guitablabel=%!GuiTabLabel()
|
||||||
set guitabtooltip=%!GuiTabToolTip()
|
set guitabtooltip=%!GuiTabToolTip()
|
||||||
set background=dark
|
set background=dark
|
||||||
|
set cpoptions=+$
|
||||||
|
|
||||||
|
|
||||||
set guioptions-=T
|
set guioptions-=T
|
||||||
|
@ -45,7 +46,7 @@ colorscheme Tomorrow-Night-Eighties
|
||||||
|
|
||||||
" Line/block move up/down
|
" Line/block move up/down
|
||||||
if (has('mac') || has('macunix'))
|
if (has('mac') || has('macunix'))
|
||||||
set clipboard=unnamed
|
" set clipboard=unnamedplus
|
||||||
nnoremap <M-Up> :m .-2<CR>==
|
nnoremap <M-Up> :m .-2<CR>==
|
||||||
nnoremap <M-Down> :m .+1<CR>==
|
nnoremap <M-Down> :m .+1<CR>==
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue