Replace vundle with vim-plug

This commit is contained in:
Logen Kain 2020-11-24 22:44:38 -05:00
parent 09117c38ad
commit e524fe599d

23
.vimrc
View File

@ -1,20 +1,9 @@
""" For Vundle
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" alternatively, pass a path where Vundle should install bundles
"let path = '~/some/path/here'
"call vundle#rc(path)
" let Vundle manage Vundle, required
Bundle 'gmarik/vundle'
Bundle 'zah/nim.vim'
Bundle 'scrooloose/syntastic'
filetype plugin indent on " required
""" vim-plug
call plug#begin('~/.vim/my-plugs')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'zah/nim.vim'
Plug 'scrooloose/syntastic'
call plug#end()
""" For COC