Advertisement
Guest User

Untitled

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