Created
February 24, 2016 20:29
-
-
Save mhartington/2bac361929a18e801106 to your computer and use it in GitHub Desktop.
plugins.viom
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
| " Setup NeoBundle ----------------------------------------------------------{{{ | |
| if (!isdirectory(expand("$HOME/.config/nvim/bundle/dein.vim"))) | |
| call system(expand("mkdir -p $HOME/.config/nvim/bundle")) | |
| call system(expand("git clone https://github.com/Shougo/dein.vim $HOME/.config/nvim/bundle/dein.vim")) | |
| endif | |
| " Required: | |
| if &compatible | |
| set nocompatible | |
| endif | |
| set runtimepath+=~/.config/nvim/bundle/dein.vim/ | |
| call dein#begin(expand('~/.config/nvim/bundle')) | |
| " Required: | |
| call dein#add('Shougo/dein.vim') | |
| " syntax | |
| call dein#add('othree/yajs.vim') | |
| call dein#add('othree/jsdoc-syntax.vim') | |
| call dein#add('othree/es.next.syntax.vim') | |
| call dein#add('1995eaton/vim-better-javascript-completion') | |
| call dein#add('kchmck/vim-coffee-script') | |
| call dein#add('hail2u/vim-css3-syntax') | |
| call dein#add('elzr/vim-json') | |
| call dein#add('tpope/vim-markdown') | |
| call dein#add('dhruvasagar/vim-table-mode') | |
| call dein#add('suan/vim-instant-markdown') | |
| call dein#add('tmhedberg/SimpylFold') | |
| call dein#add('HerringtonDarkholme/yats.vim') | |
| call dein#add('Quramy/tsuquyomi') | |
| call dein#add('mhartington/oceanic-next') | |
| call dein#add('nanotech/jellybeans.vim') | |
| call dein#add('chriskempson/base16-vim') | |
| call dein#add('Yggdroot/indentLine') | |
| call dein#add('Raimondi/delimitMate') | |
| call dein#add('valloric/MatchTagAlways') | |
| call dein#add('tpope/vim-fugitive') | |
| call dein#add('jreybert/vimagit') | |
| call dein#add('mhinz/vim-signify') | |
| call dein#add('Xuyuanp/nerdtree-git-plugin') | |
| call dein#add('https://github.com/jaxbot/github-issues.vim') | |
| call dein#add('LemonBoy/autobahn') | |
| call dein#add('tpope/vim-repeat') | |
| call dein#add('benekastah/neomake') | |
| call dein#add('editorconfig/editorconfig-vim') | |
| call dein#add('scrooloose/nerdtree') | |
| call dein#add('AndrewRadev/switch.vim') | |
| call dein#add('christoomey/vim-tmux-navigator') | |
| call dein#add('tmux-plugins/vim-tmux') | |
| call dein#add('tmux-plugins/vim-tmux-focus-events') | |
| call dein#add('vim-airline/vim-airline') | |
| call dein#add('vim-airline/vim-airline-themes') | |
| call dein#add('tpope/vim-surround') | |
| call dein#add('tomtom/tcomment_vim') | |
| call dein#add('mattn/emmet-vim') | |
| call dein#add('Chiel92/vim-autoformat') | |
| call dein#add('ap/vim-css-color') | |
| call dein#add('Shougo/unite.vim') | |
| call dein#add('Shougo/unite-outline') | |
| call dein#add('ujihisa/unite-colorscheme') | |
| call dein#add('junkblocker/unite-codesearch') | |
| call dein#add('Shougo/vimfiler.vim') | |
| call dein#add('Shougo/vimproc.vim', { | |
| \ 'build' : { | |
| \ 'windows' : 'tools\\update-dll-mingw', | |
| \ 'cygwin' : 'make -f make_cygwin.mak', | |
| \ 'mac' : 'make -f make_mac.mak', | |
| \ 'linux' : 'make', | |
| \ 'unix' : 'gmake', | |
| \ }, | |
| \ }) | |
| call dein#add('Shougo/deoplete.nvim') | |
| call dein#add('Shougo/neco-vim') | |
| call dein#add('Shougo/neoinclude.vim') | |
| call dein#add('ujihisa/neco-look') | |
| call dein#add('zchee/deoplete-jedi') | |
| call dein#add('Shougo/neosnippet.vim') | |
| call dein#add('Shougo/neosnippet-snippets') | |
| call dein#add('honza/vim-snippets') | |
| call dein#add('matthewsimo/angular-vim-snippets') | |
| call dein#add('mhinz/vim-sayonara') | |
| call dein#add('terryma/vim-multiple-cursors') | |
| call dein#add('rhysd/github-complete.vim') | |
| call dein#add('junegunn/goyo.vim') | |
| call dein#add('https://github.com/danielmiessler/VimBlog') | |
| call dein#add('vim-scripts/SyntaxRange') | |
| call dein#add('fatih/vim-go') | |
| call dein#add('zchee/deoplete-go') | |
| call dein#add('rhysd/nyaovim-popup-tooltip') | |
| call dein#add('ryanoasis/vim-devicons') | |
| call dein#end() | |
| filetype plugin indent on | |
| " }}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment