Created
September 14, 2018 10:36
-
-
Save stabenfeldt/52b788f9183fffb3468976ab1c4b879c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Ruby / Rails | |
Bundle 'tpope/vim-fugitive' | |
Bundle 'tpope/vim-rails.git' | |
Bundle 'tpope/vim-rvm' | |
Bundle 'vim-ruby/vim-ruby' | |
Bundle 'pangloss/vim-javascript' | |
Bundle 'mxw/vim-jsx' | |
Bundle 'https://github.com/othree/html5.vim' | |
" Navigation | |
Bundle 'tpope/vim-surround' | |
Bundle 'scrooloose/nerdtree' | |
Bundle 'gorkunov/smartgf.vim' | |
Bundle 'https://github.com/kien/ctrlp.vim.git' | |
Bundle 'git://github.com/jaxbot/browserlink.vim.git' | |
" HTML autocomplete niceness | |
Bundle 'rstacruz/sparkup' | |
Bundle 'slim-template/vim-slim' | |
Bundle 'vim-scripts/JavaScript-Indent' | |
Bundle 'scrooloose/syntastic' | |
Bundle 'https://github.com/mileszs/ack.vim.git' | |
Bundle 'elzr/vim-json' | |
" vim interface to Web API | |
Bundle 'mattn/webapi-vim' | |
Bundle 'mattn/gist-vim' | |
" Snipmate | |
" vim-react-snippets: | |
"Bundle "justinj/vim-react-snippets" | |
" SnipMate and its dependencies: | |
"" Bundle "MarcWeber/vim-addon-mw-utils" | |
"" Bundle "tomtom/tlib_vim" | |
"" Bundle "garbas/vim-snipmate" | |
"" | |
"" " Other sets of snippets (optional): | |
"" Bundle "honza/vim-snippets" | |
""""""""""""""""""""""""""""""""""""""""""" | |
" TESTING ultisnips | |
" Track the engine. | |
Plugin 'SirVer/ultisnips' | |
" Snippets are separated from the engine. Add this if you want them: | |
Plugin 'honza/vim-snippets' | |
" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe. | |
let g:UltiSnipsExpandTrigger="<tab>" | |
let g:UltiSnipsJumpForwardTrigger="<c-b>" | |
let g:UltiSnipsJumpBackwardTrigger="<c-z>" | |
" If you want :UltiSnipsEdit to split your window. | |
let g:UltiSnipsEditSplit="vertical" | |
" | |
" | |
""""""""""""""""""""""""""""""""""""""""""" | |
Bundle 'altercation/vim-colors-solarized' | |
" Autoclose (, " etc | |
Bundle 'Townk/vim-autoclose' | |
Bundle 'skwp/greplace.vim' | |
Bundle 'godlygeek/tabular' | |
" Always highlight enclosing tags | |
Bundle 'Valloric/MatchTagAlways' | |
" Close HTML tag by C-_ | |
Bundle 'docunext/closetag.vim' | |
" vim-fidget - JsFiddle for Vim | |
Bundle 'mohitleo9/vim-fidget' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment