mirror of
https://github.com/lloeki/vimfiles.git
synced 2025-12-06 05:24:39 +01:00
mvim tab movement
This commit is contained in:
parent
85870d17b9
commit
992ccab7a4
1 changed files with 11 additions and 1 deletions
12
vimrc
12
vimrc
|
|
@ -22,6 +22,12 @@ let g:netrw_dirhistmax = 0
|
|||
set backspace=indent,eol,start
|
||||
|
||||
if has('gui_running') "GUI specific settings
|
||||
"key bindings
|
||||
"map <D-S-left> :macaction _cycleWindowsBackwards:<CR>
|
||||
"map <D-S-right> :macaction _cycleWindows:<CR>
|
||||
map <D-S-left> :tabprevious<CR>
|
||||
map <D-S-right> :tabnext<CR>
|
||||
|
||||
|
||||
"better font
|
||||
"set guifont=Menlo:h12
|
||||
|
|
@ -33,7 +39,9 @@ if has('gui_running') "GUI specific settings
|
|||
set guioptions-=t
|
||||
|
||||
"no scrollbars
|
||||
set guioptions-=Lrb
|
||||
set guioptions-=L
|
||||
set guioptions-=r
|
||||
set guioptions-=b
|
||||
|
||||
set background=light
|
||||
"set transparency=8
|
||||
|
|
@ -135,6 +143,8 @@ let mapleader = ','
|
|||
set hlsearch
|
||||
map <leader>s :nohlsearch<CR>
|
||||
|
||||
map <leader>q :cw<CR>
|
||||
|
||||
map <leader>R :source ~/.vimrc<CR>
|
||||
map <leader>t :CtrlP<CR>
|
||||
map <leader>b :CtrlPBuffer<CR>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue