Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. set nocompatible
  2. filetype off
  3.  
  4. """""""""""""""""""""
  5. "
  6. " Vundle
  7. "
  8. """""""""""""""""""""
  9. "set the runtime path to include Vundle and initialize
  10. set rtp+=~/.vim/bundle/Vundle.vim
  11. call vundle#begin()
  12. "call vundle#begin('~/some/path/here')7 to alternatively, pass a path where Vundle should install plugins
  13.  
  14. "let Vundle manage Vundle, required
  15. Plugin 'VundleVim/Vundle.vim'
  16.  
  17. """""""""""""""""""""
  18. "
  19. " Plugins
  20. "
  21. """""""""""""""""""""
  22. Plugin 'tpope/vim-vividchalk'
  23. Plugin 'vim-airline/vim-airline'
  24. Plugin 'vim-airline/vim-airline-themes'
  25. Plugin 'plytophogy/vim-virtualenv'
  26.  
  27. call vundle#end()
  28. filetype plugin indent on
  29.  
  30. """""""""""""""""""""
  31. "
  32. " Theme
  33. "
  34. """""""""""""""""""""
  35. colorscheme vividchalk
  36. let g:airline_theme='serene'
  37. set number
  38. set relativenumber
  39. syntax on
  40. syntax enable
  41. set nocompatible
  42. "set termguicolors
  43. "Set Airline theme: let g:airline_theme='<theme>'
  44.  
  45. """""""""""""""""""""
  46. "
  47. " Shortcuts
  48. "
  49. """""""""""""""""""""
  50. map <F2> :bprev<CR>
  51. map <F3> :bnext<CR>
  52. map <F5> :source ~/.vimrc<CR>
  53.  
  54. """""""""""""""""""""
  55. "
  56. " Help
  57. "
  58. """""""""""""""""""""
  59. "To ignore plugin indent changes, instead use:
  60. "filetype plugin on
  61. "
  62. "Brief help
  63. ":PluginList - lists configured plugins
  64. ":PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
  65. ":PluginSearch foo - searches for foo; append `!` to refresh local cache
  66. ":PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
  67. "
  68. "see :h vundle for more details or wiki for FAQ
  69. "Put your non-Plugin stuff after this line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement