diff --git a/.vimrc b/.vimrc index 0aef2b7..56add5b 100644 --- a/.vimrc +++ b/.vimrc @@ -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