this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove GVim config

-32
-32
gvimrc
··· 1 - set guifont=Inconsolata-dz\ for\ Powerline\ Medium\ 10 2 - 3 - set guioptions-=T 4 - set guioptions-=e 5 - set t_Co=256 6 - set guitablabel=%M\ %t:w 7 - 8 - " Basic 9 - noremap <C-S> :write<CR> 10 - inoremap <silent> <C-S> <C-O>:write<CR> 11 - 12 - " Split window 13 - nmap <silent> <S-A-Left> :topleft vnew<CR> 14 - nmap <silent> <S-A-Right> :botright vnew<CR> 15 - nmap <silent> <S-A-Up> :topleft new<CR> 16 - nmap <silent> <S-A-Down> :botright new<CR> 17 - 18 - " Split buffer 19 - nmap <silent> <A-Left> :leftabove vnew<CR> 20 - nmap <silent> <A-Right> :rightbelow vnew<CR> 21 - nmap <silent> <A-Up> :leftabove new<CR> 22 - nmap <silent> <A-Down> :rightbelow new<CR> 23 - 24 - " Changing windows 25 - map <silent> <C-Left> :wincmd h<CR> 26 - map <silent> <C-Right> :wincmd l<CR> 27 - map <silent> <C-Up> :wincmd k<CR> 28 - map <silent> <C-Down> :wincmd j<CR> 29 - nmap <S-ESC> :close<CR> 30 - 31 - " Buffers 32 - noremap <silent> <C-D> :Bclose<CR>