Browse Source

vim: use vim-plug

refactor/nvim-lua
Garrit Franke 3 years ago
parent
commit
a023c9b737
  1. 45
      .config/nvim/init.vim

45
.config/nvim/init.vim

@ -1,23 +1,34 @@
set nocompatible " be iMproved, required set nocompatible " be iMproved, required
filetype off " required filetype off " required
" set the runtime path to include Vundle and initialize " Install vim-plug if not already installed
set rtp+=~/.vim/bundle/Vundle.vim if empty(glob('~/.vim/autoload/plug.vim'))
call vundle#begin() silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
Plugin 'VundleVim/Vundle.vim' \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Plugin 'scrooloose/syntastic' autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
Plugin 'itchyny/lightline.vim' endif
Plugin 'scrooloose/nerdtree'
Plugin 'kien/ctrlp.vim' call plug#begin()
Plugin 'prettier/vim-prettier' Plug 'scrooloose/syntastic'
Plugin 'joshdick/onedark.vim' Plug 'itchyny/lightline.vim'
Plugin 'tpope/vim-fugitive' Plug 'scrooloose/nerdtree'
Plugin 'lifepillar/vim-mucomplete' Plug 'kien/ctrlp.vim'
Plugin 'pangloss/vim-javascript' Plug 'prettier/vim-prettier'
Plugin 'mxw/vim-jsx' Plug 'joshdick/onedark.vim'
Plugin 'w0rp/ale' Plug 'tpope/vim-fugitive'
Plug 'lifepillar/vim-mucomplete'
call vundle#end() " required Plug 'pangloss/vim-javascript'
Plug 'mxw/vim-jsx'
" Defines the sneak motion
Plug 'justinmk/vim-sneak'
" HTML auto completion
Plug 'alvan/vim-closetag'
Plug 'w0rp/ale'
call plug#end()
filetype plugin indent on " required filetype plugin indent on " required
let mapleader=" " " Set leader key let mapleader=" " " Set leader key

Loading…
Cancel
Save