Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. set nocompatible
  2. filetype off
  3.  
  4. set rtp+=~/.vim/bundle/Vundle.vim
  5. call vundle#begin()
  6.  
  7. Plugin 'flazz/vim-colorschemes'
  8. Plugin 'scrooloose/nerdtree'
  9. Plugin 'tpope/vim-fugitive'
  10. Plugin 'nvie/vim-flake8'
  11.  
  12. call vundle#end()
  13. filetype plugin indent on
  14.  
  15. set ruler
  16. set rulerformat=%30(%=%b%n%y%m%r%w\ %l,%c%V\ %P%)
  17. set cursorline
  18. set tabstop=4
  19. set shiftwidth=4
  20. set softtabstop=4
  21. set expandtab
  22. set background=dark
  23. set hlsearch
  24. set nu
  25. set mouse=a
  26. set cc=100
  27. set tw=110
  28. set showmode
  29. set hlsearch
  30. set showmatch
  31. set autochdir
  32. set autoread
  33. set nowb
  34. set noswapfile
  35. set noar
  36.  
  37. colorscheme gruvbox
  38.  
  39. syntax on
  40. filetype plugin indent on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement