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