1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- " g Leader key
- let mapleader=" "
- " let localleader=" "
- nnoremap <Space> <Nop>
- " Better indenting
- vnoremap < <gv
- vnoremap > >gv
- if exists('g:vscode')
- " Simulate same TAB behavior in VSCode
- nmap <Tab> :Tabnext<CR>
- nmap <S-Tab> :Tabprev<CR>
- else
- " Better nav for omnicomplete
- inoremap <expr> <c-j> ("\<C-n>")
- inoremap <expr> <c-k> ("\<C-p>")
- " I hate escape more than anything else
- inoremap jk <Esc>
- inoremap kj <Esc>
- " Easy CAPS
- " inoremap <c-u> <ESC>viwUi
- " nnoremap <c-u> viwU<Esc>
- " TAB in general mode will move to text buffer
- nnoremap <silent> <TAB> :bnext<CR>
- " SHIFT-TAB will go back
- nnoremap <silent> <S-TAB> :bprevious<CR>
- " Alternate way to save
- nnoremap <silent> <C-s> :w<CR>
- " Alternate way to quit
- nnoremap <silent> <C-Q> :wq!<CR>
- " Use control-c instead of escape
- nnoremap <silent> <C-c> <Esc>
- " <TAB>: completion.
- inoremap <silent> <expr><TAB> pumvisible() ? "\<C-n>" : "\<TAB>"
- " Better window navigation
- nnoremap <C-h> <C-w>h
- nnoremap <C-j> <C-w>j
- nnoremap <C-k> <C-w>k
- nnoremap <C-l> <C-w>l
- " Use alt + hjkl to resize windows
- nnoremap <silent> <M-j> :resize -2<CR>
- nnoremap <silent> <M-k> :resize +2<CR>
- nnoremap <silent> <M-h> :vertical resize -2<CR>
- nnoremap <silent> <M-l> :vertical resize +2<CR>
- endif
|