Advertisement
Guest User

epic

a guest
Jul 3rd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 2.20 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 'Yggdroot/indentLine'
  23. NeoBundle 'vim-syntastic/syntastic'
  24. NeoBundle 'ryanoasis/vim-devicons'
  25. NeoBundle 'tiagofumo/vim-nerdtree-syntax-highlight'
  26. NeoBundle 'mhinz/vim-startify'
  27. NeoBundle 'edkolev/promptline.vim'
  28. NeoBundle 'chriskempson/base16-vim'
  29. NeoBundle 'ntk148v/vim-horizon'
  30. NeoBundle 'srcery-colors/srcery-vim'
  31. NeoBundle 'neoclide/coc.nvim'
  32. NeoBundle 'neoclide/coc-denite'
  33. NeoBundle 'scrooloose/nerdtree'
  34. NeoBundle 'liuchengxu/vista.vim'
  35.  
  36. " You can specify revision/branch/tag.
  37. NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
  38.  
  39. " Required:
  40. call neobundle#end()
  41.  
  42. " Required:
  43. filetype plugin indent on
  44.  
  45. " If there are uninstalled bundles found on startup,
  46. " this will conveniently prompt you to install them.
  47. NeoBundleCheck
  48. "End NeoBundle Scripts-------------------------
  49.  
  50. " Plugin Config
  51. let g:airline#extensions#tabline#enabled = 1
  52. let g:airline#extensions#tabline#left_sep = ''
  53. let g:airline#extensions#tabline#left_alt_sep = ''
  54. let g:deoplete#enable_at_startup = 1
  55. let g:airline_powerline_fonts = 1
  56. let g:indentLine_char = '│'
  57. let g:WebDevIconsUnicodeDecorateFolderNodes = 1
  58. let g:WebDevIconsUnicodeDecorateFolderNodesDefaultSymbol = ''
  59.  
  60. " Easy Parenthesis
  61. inoremap ( ()<Left>
  62. inoremap [ []<Left>
  63. inoremap { {}<Left>
  64. inoremap " ""<Left>
  65.  
  66. " Mappings for NERDTree, Tagbar and Airline
  67. map <F1> :NERDTreeToggle<Return>
  68. map <F2> :bprevious
  69. map <F3> :bnext
  70.  
  71. " Simple Settings
  72. set number
  73. set cursorline
  74. set termguicolors
  75. set noshowmode
  76. set tabstop=4 shiftwidth=4 expandtab
  77. set completeopt-=preview
  78. set fillchars+=vert:
  79. colorscheme base16-ocean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement