1
0
Fork 0
numbers/nvim/lua/vago/saga.lua

45 lines
1.1 KiB
Lua

return {
'nvimdev/lspsaga.nvim',
ft = { 'lua', 'rust', 'python' },
config = function()
require('lspsaga').setup {
lightbulb = {
enable = false,
},
symbol_in_winbar = {
show_file = false,
},
-- ui = {
-- kind = {
-- File = ' ',
-- Module = ' ',
-- Namespace = ' ',
-- Package = ' ',
-- Class = ' ',
-- Method = ' ',
-- Property = ' ',
-- Field = ' ',
-- Constructor = ' ',
-- Enum = ' ',
-- Interface = ' ',
-- Function = ' ',
-- Variable = ' ',
-- Constant = ' ',
-- String = ' ',
-- Number = ' ',
-- Boolean = ' ',
-- Array = ' ',
-- Object = ' ',
-- Key = ' ',
-- Null = ' ',
-- EnumMember = ' ',
-- Struct = ' ',
-- Event = ' ',
-- Operator = ' ',
-- TypeParameter = ' ',
-- },
-- },
}
end,
}