dotfiles/nvim/dotfiles/plugins-list.vim

36 lines
862 B
VimL
Raw Normal View History

2021-07-23 21:43:12 +00:00
let s:plug = funcref('dotfiles#plugman#register')
" UI {{{
2021-07-23 21:43:12 +00:00
call s:plug('romgrk/barbar.nvim')
call s:plug('hoob3rt/lualine.nvim')
" }}}
2021-06-28 15:38:18 +00:00
" Files {{{
2021-07-23 21:43:12 +00:00
call s:plug('preservim/nerdtree')
call s:plug('kyazdani42/nvim-web-devicons')
call s:plug('akinsho/nvim-toggleterm.lua')
call s:plug('antoyo/vim-licenses')
2021-06-28 15:38:18 +00:00
" }}}
" Language specific {{{
2021-07-23 21:43:12 +00:00
call s:plug('alaviss/nim.nvim')
2021-09-08 09:31:17 +00:00
call s:plug('stevearc/vim-arduino')
2021-09-10 16:33:48 +00:00
call s:plug('xiyaowong/coc-nvim-lua')
2021-11-11 08:53:18 +00:00
call s:plug('noahfrederick/vim-laravel') " dependencies {{{
call s:plug('noahfrederick/vim-composer')
call s:plug('tpope/vim-projectionist')
call s:plug('tpope/vim-dispatch')
" }}}
2021-06-28 15:38:18 +00:00
" }}}
2021-07-03 10:45:22 +00:00
" Misc {{{
if has('nvim-0.5.0')
2021-07-23 21:43:12 +00:00
call s:plug('andweeb/presence.nvim')
2021-11-11 08:50:32 +00:00
endif
if has('nvim-0.6.0')
2021-11-01 19:12:22 +00:00
call s:plug('github/copilot.vim')
2021-07-03 10:45:22 +00:00
endif
2021-11-01 19:12:22 +00:00
call s:plug('wakatime/vim-wakatime')
2021-07-03 10:45:22 +00:00
" }}}