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 """ vim-plug
set nocompatible " be iMproved, required call plug#begin('~/.vim/my-plugs')
filetype off " required Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'zah/nim.vim'
" set the runtime path to include Vundle and initialize Plug 'scrooloose/syntastic'
set rtp+=~/.vim/bundle/vundle/ call plug#end()
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
""" For COC """ For COC