LunarVim/vim-plug/plugins.vim

91 lines
2.4 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')
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
Plug 'tpope/vim-commentary'
2020-04-29 16:20:41 +02:00
" Have the file system follow you around
Plug 'airblade/vim-rooter'
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'
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 '(' '[' '{'
Plug 'jiangmiao/auto-pairs'
2020-04-24 21:29:55 +02:00
" Themes
2020-04-26 07:39:35 +02:00
Plug 'christianchiarulli/onedark.vim'
2020-04-28 03:58:30 +02:00
" Plug 'kaicataldo/material.vim'
2020-04-26 07:39:35 +02:00
" Intellisense
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Status Line
2020-05-06 03:22:29 +02:00
" Plug 'ChristianChiarulli/eleline.vim'
2020-04-26 07:39:35 +02:00
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
2020-04-26 20:17:15 +02:00
" Ranger
2020-05-03 18:23:14 +02:00
" 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-02 02:44:59 +02:00
Plug 'mhinz/vim-signify'
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-04-28 19:13:46 +02:00
" Help
Plug 'liuchengxu/vim-which-key'
" Zen mode
Plug 'junegunn/goyo.vim'
" Making stuff
Plug 'neomake/neomake'
" Snippets TODO fix TAB hijack
" Plug 'SirVer/ultisnips'
" Better Comments
Plug 'jbgutierrez/vim-better-comments'
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