Advertisement
Guest User

My .vimrc [FIXED]

a guest
Jan 13th, 2017
825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.49 KB | None | 0 0
  1. set nocompatible              " be iMproved, required
  2. filetype off                  " required
  3.  
  4. " set the runtime path to include Vundle and initialize
  5. set rtp+=~/.vim/bundle/Vundle.vim
  6. call vundle#begin()
  7. " alternatively, pass a path where Vundle should install plugins
  8. "call vundle#begin('~/some/path/here')
  9.  
  10. " let Vundle manage Vundle, required
  11. Plugin 'VundleVim/Vundle.vim'
  12.  
  13. " NERDtree on github
  14. Plugin 'scrooloose/nerdtree'
  15.  
  16. " scheme groovebox
  17. Plugin 'morhetz/gruvbox'
  18.  
  19. " scheme jellybean
  20. Plugin 'nanotech/jellybeans.vim'
  21.  
  22. " scheme nord
  23. Plugin 'arcticicestudio/nord-vim'
  24.  
  25. " autoclose parenthesis
  26. Plugin 'Townk/vim-autoclose'
  27.  
  28. " All of your Plugins must be added before the following line
  29. call vundle#end()            " required
  30. filetype plugin indent on    " required
  31. " To ignore plugin indent changes, instead use:
  32. "filetype plugin on
  33. "
  34. " Brief help
  35. " :PluginList       - lists configured plugins
  36. " :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
  37. " :PluginSearch foo - searches for foo; append `!` to refresh local cache
  38. " :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
  39. "
  40. " see :h vundle for more details or wiki for FAQ
  41. " Put your non-Plugin stuff after this line
  42. "
  43. " Set number command at start up
  44. set number
  45.  
  46. " Set tab character that appear 4-spaces-wide
  47. set tabstop=4
  48.  
  49. " Set syntax highlighting on
  50. syntax on
  51.  
  52. " Fix scroll bug
  53. syn sync fromstart
  54.  
  55. " Set colorscheme
  56. colorscheme jellybeans
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement