aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-04-19 02:51:43 -0400
committertdro <tdro@users.noreply.github.com>2020-04-19 02:51:43 -0400
commitc5322d5d258f29a62c6d93a563e3f0d314658a14 (patch)
treed632e1d3383059ffbcab48ccb2367c9c593c1f76 /.vim
parentb01d91a3d67ac356811f7fc4e4dbeb53c2086d1d (diff)
downloaddotfiles-c5322d5d258f29a62c6d93a563e3f0d314658a14.tar.gz
dotfiles-c5322d5d258f29a62c6d93a563e3f0d314658a14.tar.bz2
dotfiles-c5322d5d258f29a62c6d93a563e3f0d314658a14.zip
.vim/plugins: Switch to vim plug
Set tags for all plugins
Diffstat (limited to '.vim')
-rw-r--r--.vim/plugins.vim40
1 files changed, 19 insertions, 21 deletions
diff --git a/.vim/plugins.vim b/.vim/plugins.vim
index 6f713df..93f2423 100644
--- a/.vim/plugins.vim
+++ b/.vim/plugins.vim
@@ -1,27 +1,25 @@
-" Required.
-filetype off
+" Source plugin manager
+so ~/.vim/bundle/vim-plug/plug.vim
-" Set the runtime path to include Vundle and initialize.
-set rtp+=~/.vim/bundle/Vundle.vim
-call vundle#begin()
+" Specify a directory for plugins
+call plug#begin('~/.vim/bundle')
-Plugin 'VundleVim/Vundle.vim'
-Plugin 'junegunn/fzf.vim'
-Plugin 'skwp/greplace.vim'
-Plugin 'pangloss/vim-javascript'
-Plugin 'tpope/vim-surround'
-Plugin 'MarcWeber/vim-addon-mw-utils'
-Plugin 'tomtom/tlib_vim'
-Plugin 'tobyS/pdv'
-Plugin 'tobyS/vmustache'
-Plugin 'SirVer/ultisnips'
-Plugin 'mcchrish/nnn.vim'
-Plugin 'dense-analysis/ale'
-Plugin 'tpope/vim-fugitive'
+Plug 'junegunn/vim-plug'
+Plug 'junegunn/fzf.vim', { 'tag': 'f86ef1bce602713fe0b5b68f4bdca8c6943ecb59' }
+Plug 'mcchrish/nnn.vim', { 'tag': 'bfc91b503769920a366b12851b871795c0eb6825' }
+Plug 'skwp/greplace.vim', { 'tag': 'a34dff350f4f35d35f6265ab2abef152bc836ca8' }
+Plug 'pangloss/vim-javascript', { 'tag': 'c3966153e81bc3766b1627e6ab0cd53333b61c1e' }
+Plug 'tpope/vim-surround', { 'tag': 'f51a26d3710629d031806305b6c8727189cd1935' }
+Plug 'MarcWeber/vim-addon-mw-utils', { 'tag': '6aaf4fee472db7cbec6d2c8eea69fdf3a8f8a75d' }
+Plug 'tomtom/tlib_vim', { 'tag': 'a071b6d41b20069a3520e0d101194a752968973b' }
+Plug 'tobyS/pdv', { 'tag': '0e4b5aa689400246069953147ce53905c912087d' }
+Plug 'tobyS/vmustache', { 'tag': 'd39f77bafef57ba7af304c74b3cfc91a83fd86e0' }
+Plug 'SirVer/ultisnips', { 'tag': 'ee31ea1c7d08ced8577120b4c1d55c5a05351a75' }
+Plug 'dense-analysis/ale', { 'tag': '64b9a2708d1b5c2ce2c04eee1f64508c75b7bbb4' }
+Plug 'tpope/vim-fugitive', { 'tag': '85e2c73830b6bb01ce7fc3a926d2b25836a253eb' }
" Enable fzf.vim on Debian.
silent! source /usr/share/doc/fzf/examples/fzf.vim
-" Plugins must be added before the following line.
-call vundle#end() " required
-filetype plugin indent on " required
+" Initialize plugin system
+call plug#end()