diff --git a/nvim/lua/custom/plugins/symbol_usage.lua b/nvim/lua/custom/plugins/symbol_usage.lua index e7fd090..5a470e2 100644 --- a/nvim/lua/custom/plugins/symbol_usage.lua +++ b/nvim/lua/custom/plugins/symbol_usage.lua @@ -31,6 +31,8 @@ return { event = 'LspAttach', -- need run before LspAttach if you use nvim 0.9. On 0.10 use 'LspAttach' config = function() require('symbol-usage').setup { + filetypes = {}, + log = { enabled = false, level = 'INFO', stdout = {}, log_file = {}, notify = {} }, text_format = text_format, kinds = { SymbolKind.Function, SymbolKind.Method, SymbolKind.Class, SymbolKind.Struct, SymbolKind.Variable, SymbolKind.Constant }, }