dotfiles/nvim/dotfiles/plugins-list.vim

49 lines
1.3 KiB
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-11-14 17:45:32 +00:00
" Navigation {{{
call s:plug('nvim-telescope/telescope.nvim') " dependencies {{{
call s:plug('nvim-lua/plenary.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')
call s:plug('luke-gru/vim-riml')
2022-02-14 22:20:46 +00:00
call s:plug('bhurlow/vim-parinfer')
call s:plug('vim-scripts/newlisp')
if has('unix')
call s:plug('nvim-neorg/neorg', { 'branch': 'unstable' }) " dependencies {{{
call s:plug('nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' })
" }}}
endif
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 {{{
call s:plug('junegunn/vader.vim')
2021-11-14 17:45:32 +00:00
call s:plug('andweeb/presence.nvim')
call s:plug('wakatime/vim-wakatime')
2021-11-11 08:50:32 +00:00
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
" }}}