mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
50 lines
1.3 KiB
VimL
50 lines
1.3 KiB
VimL
" *** *** *** Plugins *** *** ***
|
|
" *******************************
|
|
|
|
" Automatically install vim-plug
|
|
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
|
|
if empty(glob(data_dir . '/autoload/plug.vim'))
|
|
silent execute '!curl -fLo ' . data_dir . '/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
|
endif
|
|
|
|
call plug#begin(data_dir . '/plugins')
|
|
|
|
" Dashboard
|
|
Plug 'glepnir/dashboard-nvim'
|
|
|
|
" Color Themes
|
|
Plug 'chriskempson/base16-vim'
|
|
|
|
" Completion
|
|
Plug 'SirVer/ultisnips'
|
|
Plug 'honza/vim-snippets'
|
|
Plug 'quangnguyen30192/cmp-nvim-ultisnips'
|
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
|
Plug 'ThePrimeagen/harpoon'
|
|
Plug 'prettier/vim-prettier', { 'do': 'yarn install --frozen-lockfile --production', 'branch': 'release/0.x' }
|
|
|
|
" Custom Motions
|
|
Plug 'easymotion/vim-easymotion' " <Leader><Leader> (motion)
|
|
|
|
" Status Line
|
|
Plug 'hoob3rt/lualine.nvim'
|
|
Plug 'akinsho/bufferline.nvim'
|
|
Plug 'kyazdani42/nvim-web-devicons'
|
|
|
|
" Tpope
|
|
Plug 'tpope/vim-abolish'
|
|
Plug 'tpope/vim-speeddating'
|
|
|
|
" Misc
|
|
Plug 'APZelos/blamer.nvim'
|
|
Plug 'MattesGroeger/vim-bookmarks'
|
|
Plug 'godlygeek/tabular'
|
|
Plug 'junegunn/goyo.vim'
|
|
Plug 'karb94/neoscroll.nvim'
|
|
Plug 'norcalli/nvim-colorizer.lua'
|
|
Plug 'windwp/nvim-autopairs'
|
|
|
|
call plug#end()
|
|
doautocmd User PlugLoaded
|