LunarVim/vim-plug/plugins.vim

112 lines
3 KiB
VimL
Raw Normal View History

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