LunarVim.LunarVim/vim-plug/plugins.vim

111 lines
3 KiB
VimL
Raw Normal View History

2020-04-24 15:29:55 -04:00
" auto-install vim-plug
if empty(glob('~/.config/nvim/autoload/plug.vim'))
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
"autocmd VimEnter * PlugInstall
2020-04-26 01:39:35 -04:00
autocmd VimEnter * PlugInstall | source $MYVIMRC
2020-04-24 15:29:55 -04:00
endif
2020-04-23 22:44:32 -04:00
call plug#begin('~/.config/nvim/autoload/plugged')
" jsx syntax support
Plug 'maxmellon/vim-jsx-pretty'
Plug 'suy/vim-context-commentstring'
2020-04-27 23:55:12 -04:00
" Change dates fast
Plug 'tpope/vim-speeddating'
2020-04-28 23:34:21 -04:00
" Convert binary, hex, etc..
Plug 'glts/vim-radical'
" Files
Plug 'tpope/vim-eunuch'
" Repeat stuff
Plug 'tpope/vim-repeat'
" Surround
Plug 'tpope/vim-surround'
" Better Comments
2020-05-17 15:41:15 -04:00
Plug 'tpope/vim-commentary'
" Plug 'preservim/nerdcommenter'
2020-04-29 10:20:41 -04:00
" Have the file system follow you around
Plug 'airblade/vim-rooter'
2020-05-10 16:20:02 -04:00
" auto set indent settings
Plug 'tpope/vim-sleuth'
2020-04-27 23:55:12 -04:00
2020-04-28 23:34:21 -04:00
if exists('g:vscode')
" Easy motion for VSCode
Plug 'asvetliakov/vim-easymotion'
else
2020-05-03 22:00:46 -04:00
" Text Navigation
Plug 'justinmk/vim-sneak'
Plug 'unblevable/quick-scope'
" Plug 'easymotion/vim-easymotion'
2020-04-28 23:34:21 -04:00
" Add some color
Plug 'norcalli/nvim-colorizer.lua'
" Plug 'junegunn/rainbow_parentheses.vim'
Plug 'luochen1990/rainbow'
2020-04-23 22:44:32 -04:00
" Better Syntax Support
Plug 'sheerun/vim-polyglot'
2020-05-06 16:33:15 -04:00
" Cool Icons
Plug 'ryanoasis/vim-devicons'
2020-04-23 22:44:32 -04:00
" Auto pairs for '(' '[' '{'
2020-05-10 16:20:02 -04:00
Plug 'jiangmiao/auto-pairs'
" Closetags
Plug 'alvan/vim-closetag'
2020-04-24 15:29:55 -04:00
" Themes
2020-04-26 01:39:35 -04:00
Plug 'christianchiarulli/onedark.vim'
2020-05-12 11:31:12 -04:00
" Plug 'kaicataldo/material.vim'
" Plug 'NLKNguyen/papercolor-theme'
2020-05-12 14:06:41 -04:00
" Plug 'tomasiser/vim-code-dark'
2020-04-26 01:39:35 -04:00
" Intellisense
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Status Line
Plug 'vim-airline/vim-airline'
2020-05-12 11:31:12 -04:00
" Plug 'vim-airline/vim-airline-themes'
2020-04-26 14:17:15 -04:00
" Ranger
" Plug 'francoiscabrol/ranger.vim'
" Plug 'rbgrouleff/bclose.vim'
Plug 'kevinhwang91/rnvimr', {'do': 'make sync'}
2020-04-27 01:44:22 -04:00
" FZF
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
2020-04-27 23:04:13 -04:00
" Git
2020-05-10 23:27:51 -04:00
" Plug 'mhinz/vim-signify'
Plug 'airblade/vim-gitgutter'
2020-04-28 13:13:46 -04:00
Plug 'tpope/vim-fugitive'
2020-05-03 12:18:38 -04:00
Plug 'tpope/vim-rhubarb'
2020-04-28 13:13:46 -04:00
Plug 'junegunn/gv.vim'
2020-04-27 23:04:13 -04:00
" Terminal
Plug 'voldikss/vim-floaterm'
" Start Screen
2020-04-27 23:13:39 -04:00
Plug 'mhinz/vim-startify'
2020-04-27 23:55:12 -04:00
" Vista
Plug 'liuchengxu/vista.vim'
2020-05-10 16:20:02 -04:00
" See what keys do like in emacs
2020-04-28 13:13:46 -04:00
Plug 'liuchengxu/vim-which-key'
" Zen mode
Plug 'junegunn/goyo.vim'
" Making stuff
Plug 'neomake/neomake'
2020-05-23 13:40:45 -04:00
" Snippets
2020-05-23 13:39:04 -04:00
Plug 'honza/vim-snippets'
2020-05-23 13:40:45 -04:00
Plug 'mattn/emmet-vim'
2020-04-28 13:13:46 -04:00
" Better Comments
" Plug 'jbgutierrez/vim-better-comments'
2020-05-10 16:20:02 -04:00
" Echo doc
" Plug 'Shougo/echodoc.vim'
2020-05-14 22:26:50 -04:00
" Interactive code
2020-07-26 15:35:04 -04:00
Plug 'metakirby5/codi.vim'
2020-05-23 13:40:45 -04:00
" Vim Wiki
2020-05-23 14:47:05 -04:00
" Plug 'https://github.com/vimwiki/vimwiki.git'
2020-04-27 21:58:30 -04:00
endif
2020-04-24 18:53:23 -04:00
2020-04-23 22:44:32 -04:00
call plug#end()
2020-04-24 18:53:23 -04:00
" Automatically install missing plugins on startup
autocmd VimEnter *
\ if len(filter(values(g:plugs), '!isdirectory(v:val.dir)'))
\| PlugInstall --sync | q
\| endif