mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nvim] Update to use plugman.
This commit is contained in:
parent
80c038cb22
commit
5a12e8e7e4
1 changed files with 9 additions and 9 deletions
|
@ -1,23 +1,23 @@
|
|||
let s:ctx = g:dotfiles_plugins_list_context
|
||||
let s:plug = funcref('dotfiles#plugman#register')
|
||||
|
||||
" UI {{{
|
||||
call s:ctx.use('romgrk/barbar.nvim')
|
||||
call s:ctx.use('hoob3rt/lualine.nvim')
|
||||
call s:plug('romgrk/barbar.nvim')
|
||||
call s:plug('hoob3rt/lualine.nvim')
|
||||
" }}}
|
||||
|
||||
" Files {{{
|
||||
call s:ctx.use('preservim/nerdtree')
|
||||
call s:ctx.use('kyazdani42/nvim-web-devicons')
|
||||
call s:ctx.use('akinsho/nvim-toggleterm.lua')
|
||||
call s:ctx.use('antoyo/vim-licenses')
|
||||
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')
|
||||
" }}}
|
||||
|
||||
" Language specific {{{
|
||||
call s:ctx.use('alaviss/nim.nvim')
|
||||
call s:plug('alaviss/nim.nvim')
|
||||
" }}}
|
||||
|
||||
" Misc {{{
|
||||
if has('nvim-0.5.0')
|
||||
call s:ctx.use('andweeb/presence.nvim')
|
||||
call s:plug('andweeb/presence.nvim')
|
||||
endif
|
||||
" }}}
|
||||
|
|
Loading…
Reference in a new issue