from packer to lazy

This commit is contained in:
2025-12-17 21:32:34 +07:00
parent 40aee7d3ce
commit 3c21e12bf3
38 changed files with 743 additions and 672 deletions

14
lua/plugins/tagbar.lua Normal file
View File

@@ -0,0 +1,14 @@
-- Vim plugin that displays tags in a window, ordered by scope
return {
'preservim/tagbar',
enabled = true,
lazy = false,
priority = 40,
dependencies = {
-- An enhanced ctags compatible index generator written in pure PHP
{ 'vim-php/phpctags' },
-- jsctags generator using tern
{ 'sergioramos/jsctags' }
}
}