Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. source $VIMRUNTIME/mswin.vim
  2. behave mswin
  3.  
  4. set nobackup
  5. colorscheme evening
  6. set relativenumber
  7. set number
  8. set guioptions-=T "remove toolbar
  9. set lines=48 columns=115
  10.  
  11. nnoremap <C-S-tab> :tabprevious<CR>
  12. nnoremap <C-tab> :tabnext<CR>
  13. nnoremap <C-t> :tabnew<CR>
  14. inoremap <C-S-tab> <Esc>:tabprevious<CR>i
  15. inoremap <C-tab> <Esc>:tabnext<CR>i
  16. inoremap <C-t> <Esc>:tabnew<CR>
  17. nnoremap <C-w> :tabclose<CR>
  18.  
  19. set tabstop=4 shiftwidth=4 expandtab
  20. syntax on
  21. set history=1000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement