From df444d7da74441df4a59286cb74b361694b8f087 Mon Sep 17 00:00:00 2001 From: emerson Date: Sat, 7 Nov 2020 10:48:34 -0500 Subject: [PATCH] move to vim-plug --- .vimrc | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/.vimrc b/.vimrc index c97beb1..ef52173 100644 --- a/.vimrc +++ b/.vimrc @@ -2,21 +2,20 @@ set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.config/nvim/bundle/Vundle.vim -call vundle#begin('~/.config/nvim/bundle') -Plugin 'VundleVim/Vundle.vim' -Plugin 'chriskempson/base16-vim' -Plugin 'godlygeek/tabular' -Plugin 'plasticboy/vim-markdown' -Plugin 'itchyny/lightline.vim' -Plugin 'tpope/vim-fugitive' -Plugin 'tpope/vim-surround' -Plugin 'scrooloose/nerdtree' -Plugin 'scrooloose/nerdcommenter' -Plugin 'ctrlpvim/ctrlp.vim' -Plugin 'othree/html5.vim' -Plugin 'tpope/vim-haml' -Plugin 'junegunn/fzf' -call vundle#end() +call plug#begin('~/.config/nvim/plug') +Plug 'chriskempson/base16-vim' +Plug 'godlygeek/tabular' +Plug 'plasticboy/vim-markdown' +Plug 'itchyny/lightline.vim' +Plug 'tpope/vim-fugitive' +Plug 'tpope/vim-surround' +Plug 'scrooloose/nerdtree' +Plug 'scrooloose/nerdcommenter' +Plug 'ctrlpvim/ctrlp.vim' +Plug 'othree/html5.vim' +Plug 'tpope/vim-haml' +Plug 'junegunn/fzf' +call plug#end() syntax enable set background=dark