move to vim-plug

This commit is contained in:
Em 2020-11-07 10:48:34 -05:00
parent 3775a67a98
commit df444d7da7
1 changed files with 14 additions and 15 deletions

29
.vimrc
View File

@ -2,21 +2,20 @@ set nocompatible
filetype off filetype off
set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.config/nvim/bundle/Vundle.vim set rtp+=~/.config/nvim/bundle/Vundle.vim
call vundle#begin('~/.config/nvim/bundle') call plug#begin('~/.config/nvim/plug')
Plugin 'VundleVim/Vundle.vim' Plug 'chriskempson/base16-vim'
Plugin 'chriskempson/base16-vim' Plug 'godlygeek/tabular'
Plugin 'godlygeek/tabular' Plug 'plasticboy/vim-markdown'
Plugin 'plasticboy/vim-markdown' Plug 'itchyny/lightline.vim'
Plugin 'itchyny/lightline.vim' Plug 'tpope/vim-fugitive'
Plugin 'tpope/vim-fugitive' Plug 'tpope/vim-surround'
Plugin 'tpope/vim-surround' Plug 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdtree' Plug 'scrooloose/nerdcommenter'
Plugin 'scrooloose/nerdcommenter' Plug 'ctrlpvim/ctrlp.vim'
Plugin 'ctrlpvim/ctrlp.vim' Plug 'othree/html5.vim'
Plugin 'othree/html5.vim' Plug 'tpope/vim-haml'
Plugin 'tpope/vim-haml' Plug 'junegunn/fzf'
Plugin 'junegunn/fzf' call plug#end()
call vundle#end()
syntax enable syntax enable
set background=dark set background=dark