Advertisement
Guest User

super vimrc

a guest
Apr 7th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 2.26 KB | None | 0 0
  1. "NeoBundle Scripts-----------------------------
  2. if has('vim_starting')
  3.   " Required:
  4.   set runtimepath+=/home/joshua/.config/nvim/bundle/neobundle.vim/
  5. endif
  6.  
  7. " Required:
  8. call neobundle#begin(expand('/home/joshua/.config/nvim/bundle'))
  9.  
  10. " Let NeoBundle manage NeoBundle
  11. " Required:
  12. NeoBundleFetch 'Shougo/neobundle.vim'
  13.  
  14. " Add or remove your Bundles here:
  15. NeoBundle 'Shougo/neosnippet.vim'
  16. NeoBundle 'Shougo/neosnippet-snippets'
  17. NeoBundle 'tpope/vim-fugitive'
  18. NeoBundle 'ctrlpvim/ctrlp.vim'
  19. NeoBundle 'flazz/vim-colorschemes'
  20. NeoBundle 'vim-airline/vim-airline'
  21. NeoBundle 'vim-airline/vim-airline-themes'
  22. NeoBundle 'Shougo/deoplete.nvim'
  23. NeoBundle 'deoplete-plugins/deoplete-jedi'
  24. NeoBundle 'deoplete-plugins/deoplete-go'
  25. NeoBundle 'Yggdroot/indentLine'
  26. NeoBundle 'scrooloose/nerdtree'
  27. NeoBundle 'vim-syntastic/syntastic'
  28. NeoBundle 'ryanoasis/vim-devicons'
  29. NeoBundle 'tiagofumo/vim-nerdtree-syntax-highlight'
  30. NeoBundle 'mhinz/vim-startify'
  31. NeoBundle 'edkolev/promptline.vim'
  32. NeoBundle 'chriskempson/base16-vim'
  33. NeoBundle 'ntk148v/vim-horizon'
  34. NeoBundle 'majutsushi/tagbar'
  35. NeoBundle 'srcery-colors/srcery-vim'
  36.  
  37. " You can specify revision/branch/tag.
  38. NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
  39.  
  40. " Required:
  41. call neobundle#end()
  42.  
  43. " Required:
  44. filetype plugin indent on
  45.  
  46. " If there are uninstalled bundles found on startup,
  47. " this will conveniently prompt you to install them.
  48. NeoBundleCheck
  49. "End NeoBundle Scripts-------------------------
  50.  
  51. " Plugin Config
  52. let g:airline#extensions#tabline#enabled = 1
  53. let g:airline#extensions#tabline#left_sep = ''
  54. let g:airline#extensions#tabline#left_alt_sep = ''
  55. let g:deoplete#enable_at_startup = 1
  56. let g:airline_powerline_fonts = 1
  57. let g:indentLine_char = '│'
  58. let g:WebDevIconsUnicodeDecorateFolderNodes = 1
  59. let g:WebDevIconsUnicodeDecorateFolderNodesDefaultSymbol = ''
  60.  
  61. " Easy Parenthesis
  62. inoremap ( ()<Left>
  63. inoremap [ []<Left>
  64. inoremap { {}<Left>
  65. inoremap " ""<Left>
  66.  
  67. " Mappings for NERDTree, Tagbar and Airline
  68. map <F1> :NERDTreeToggle
  69. map <F2> :TagbarToggle
  70. map <F3> :bprevious
  71. map <F4> :bnext
  72.  
  73. " Simple Settings
  74. set number
  75. set cursorline
  76. set termguicolors
  77. set noshowmode
  78. set tabstop=4 shiftwidth=4 expandtab
  79. set completeopt-=preview
  80. set fillchars+=vert:
  81. colorscheme srcery
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement