aboutsummaryrefslogtreecommitdiff
path: root/vimrc
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2015-08-17 11:57:49 -0600
committerCody Hiar <codyfh@gmail.com>2015-08-17 11:57:49 -0600
commite398816da47aa706b2bf05b8a663a637d5b6f39c (patch)
tree6231dd8617d79e4dc2192ace65e14ba8fb66ca1e /vimrc
parent547be64dd10d56c1a0979756eaf0b2aaaf15f6ec (diff)
Changing to different plugin system
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc69
1 files changed, 35 insertions, 34 deletions
diff --git a/vimrc b/vimrc
index 408b422..7b94ec1 100644
--- a/vimrc
+++ b/vimrc
@@ -3,42 +3,43 @@
"-----------------------------------------------------------------------------------------------------------------------
set nocompatible " be iMproved
filetype off " required!
-set rtp+=~/.vim/bundle/Vundle.vim
-call vundle#begin()
+
"Plugins
+call plug#begin('~/.vim/plugged')
"General vim Plugins
-Plugin 'nathanaelkane/vim-indent-guides'
-Plugin 'scrooloose/nerdtree'
-Plugin 'scrooloose/nerdcommenter'
-Plugin 'jistr/vim-nerdtree-tabs'
-Plugin 'tpope/vim-fugitive'
-Plugin 'tpope/vim-unimpaired'
-Plugin 'terryma/vim-multiple-cursors'
-Plugin 'scrooloose/syntastic'
-Plugin 'joonty/vdebug'
-Plugin 'kien/ctrlp.vim'
-Plugin 'Lokaltog/vim-easymotion'
-Plugin 'Shougo/unite.vim'
-Plugin 'SirVer/ultisnips'
-Plugin 'honza/vim-snippets'
-Plugin 'ervandew/supertab'
-Plugin 'tsukkee/unite-tag'
-Plugin 'gcmt/taboo.vim'
-Plugin 'tpope/vim-surround'
-Plugin 'mattn/emmet-vim'
-Plugin 'tmhedberg/matchit'
-Plugin 'shawncplus/phpcomplete.vim'
-Plugin 'StanAngeloff/php.vim'
-Plugin 'octol/vim-cpp-enhanced-highlight'
-Plugin 'stephpy/vim-yaml'
-Plugin 'hdima/python-syntax'
-Plugin 'vim-scripts/pep8'
-Plugin 'fs111/pydoc.vim'
-Plugin 'davidhalter/jedi-vim'
-Plugin 'godlygeek/tabular'
-Plugin 'plasticboy/vim-markdown'
-Plugin 'jamessan/vim-gnupg'
-call vundle#end()
+Plug 'nathanaelkane/vim-indent-guides'
+Plug 'scrooloose/nerdtree'
+Plug 'scrooloose/nerdcommenter'
+Plug 'jistr/vim-nerdtree-tabs'
+Plug 'tpope/vim-fugitive'
+Plug 'tpope/vim-unimpaired'
+Plug 'terryma/vim-multiple-cursors'
+Plug 'scrooloose/syntastic'
+Plug 'joonty/vdebug'
+Plug 'kien/ctrlp.vim'
+Plug 'Lokaltog/vim-easymotion'
+Plug 'Shougo/unite.vim'
+Plug 'SirVer/ultisnips'
+Plug 'honza/vim-snippets'
+Plug 'ervandew/supertab'
+Plug 'tsukkee/unite-tag'
+Plug 'gcmt/taboo.vim'
+Plug 'tpope/vim-surround'
+Plug 'mattn/emmet-vim'
+Plug 'tmhedberg/matchit'
+Plug 'shawncplus/phpcomplete.vim'
+Plug 'StanAngeloff/php.vim'
+Plug 'octol/vim-cpp-enhanced-highlight'
+Plug 'stephpy/vim-yaml'
+Plug 'hdima/python-syntax'
+Plug 'vim-scripts/pep8'
+Plug 'fs111/pydoc.vim'
+Plug 'davidhalter/jedi-vim'
+Plug 'godlygeek/tabular'
+Plug 'plasticboy/vim-markdown'
+Plug 'jamessan/vim-gnupg'
+" Add plugins to &runtimepath
+call plug#end()
filetype plugin indent on " required!
" Autocomplete
set omnifunc=syntaxcomplete#Complete