Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. "------------Mappings--------------"
  2. 1 nmap ,ev :e $MYVIMRC<cr>
  3. 2
  4. 3 autocmd BufNewFile,BufRead *.py nnoremap <F5> :!clear && python3 %<RETURN>
  5. 4
  6. 5 set nocompatible " be iMproved, required
  7. 6 filetype off " required
  8. 7
  9. 8 set rtp+=~/.vim/bundle/Vundle.vim
  10. 9 call vundle#begin()
  11. 10
  12. 11 " let Vundle manage Vundle, required
  13. 12 Plugin 'VundleVim/Vundle.vim'
  14. 13 Plugin 'scrooloose/nerdtree'
  15. 14 Plugin 'nanotech/jellybeans.vim'
  16. 15 Plugin 'vim-airline/vim-airline'
  17. 16 Plugin 'vim-airline/vim-airline-themes'
  18. 17 Plugin 'tpope/vim-fugitive'
  19. 18 Plugin 'kien/ctrlp.vim'
  20. 19 Plugin 'yggdroot/indentline'
  21. 20 Plugin 'seagoj/indentline-config.vim'
  22. 21 Plugin 'Valloric/YouCompleteMe'
  23. 22 Plugin 'airblade/vim-gitgutter'
  24. 23 Plugin 'SirVer/ultisnips'
  25. 24 call vundle#end() " required
  26. 25
  27. 26 "----------My configuration-----------
  28. 27 set hlsearch
  29. 28 set incsearch
  30. 29
  31. 30 nnoremap <C-Left> :tabprevious<CR>
  32. 31 nnoremap <C-Right> :tabnext<CR>
  33. 32 nnoremap <C-j> :tabprevious<CR>
  34. 33 nnoremap <C-k> :tabnext<C
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement