You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
279 B

local M = require('module'):new()
function M:boot()
vim.g.tagbar_silent = 1
vim.g.tagbar_type_php = {
kinds = {
'i:interfaces',
'c:classes',
'd:constant definitions:0:0',
'f:functions',
-- 'v:variables:0:0',
'j:javascript functions',
}
}
end
return M