Created
June 10, 2020 05:37
-
-
Save JamesKim2998/0b5addfd89cab08a0d0d4ec0bb99c703 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
call plug#begin('~/.config/nvim/plugged') | |
" appearance | |
Plug 'altercation/vim-colors-solarized' | |
Plug 'nathanaelkane/vim-indent-guides' | |
" git | |
Plug 'tpope/vim-fugitive' | |
Plug 'vim-airline/vim-airline' | |
Plug 'airblade/vim-gitgutter' | |
" navigation | |
Plug 'rking/ag.vim' | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'scrooloose/nerdtree' | |
Plug 'Xuyuanp/nerdtree-git-plugin' | |
" autocomplete | |
Plug 'ervandew/supertab' | |
" flycheck | |
Plug 'vim-syntastic/syntastic' | |
" language support | |
Plug 'martinda/Jenkinsfile-vim-syntax' " Jenkinsfile | |
call plug#end() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment