Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. set number
  2. set autoindent
  3. set shiftwidth=4
  4. set softtabstop=4
  5. set expandtab
  6. syntax on
  7.  
  8. set nocompatible " be iMproved, required
  9. filetype off " required
  10.  
  11. " set the runtime path to include Vundle and initialize
  12. set rtp+=~/.vim/bundle/Vundle.vim
  13. call vundle#begin()
  14. " alternatively, pass a path where Vundle should install plugins
  15. "call vundle#begin('~/some/path/here')
  16.  
  17. " let Vundle manage Vundle, required
  18. Plugin 'VundleVim/Vundle.vim'
  19.  
  20. " The following are examples of different formats supported.
  21. " Keep Plugin commands between vundle#begin/end.
  22. " plugin on GitHub repo
  23. Plugin 'tpope/vim-fugitive'
  24. " plugin from http://vim-scripts.org/vim/scripts.html
  25. " Plugin 'L9'
  26. " Git plugin not hosted on GitHub
  27. Plugin 'git://git.wincent.com/command-t.git'
  28. " git repos on your local machine (i.e. when working on your own plugin)
  29. "Plugin 'file:///home/gmarik/path/to/plugin'
  30. " The sparkup vim script is in a subdirectory of this repo called vim.
  31. " Pass the path to set the runtimepath properly.
  32. Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
  33. " Install L9 and avoid a Naming conflict if you've already installed a
  34. " different version somewhere else.
  35. " Plugin 'ascenator/L9', {'name': 'newL9'}
  36.  
  37. Plugin 'itchyny/lightline.vim'
  38. set laststatus=2
  39. let g:lightline = {
  40. \ 'colorscheme': 'wombat',
  41. \ 'active': {
  42. \ 'left': [ [ 'mode', 'paste' ],
  43. \ [ 'readonly', 'filename', 'modified', 'greeting' ] ]
  44. \ },
  45. \ 'component': {
  46. \ 'greeting': 'Handsome Jack!'
  47. \ },
  48. \ }
  49.  
  50. Plugin 'scrooloose/nerdtree'
  51. map <C-n> :NERDTreeToggle<CR>
  52.  
  53. Plugin 'flazz/vim-colorschemes'
  54. colorscheme wombat
  55.  
  56. " All of your Plugins must be added before the following line
  57. call vundle#end() " required
  58. filetype plugin indent on " required
  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