From fbca7499c8ee0a0b9f4897a452ecdbe4589f938d Mon Sep 17 00:00:00 2001 From: Buliway Date: Thu, 26 Jun 2025 01:53:19 +0300 Subject: [PATCH] fix symbol_usage.lua highlight --- nvim/lua/custom/plugins/symbol_usage.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nvim/lua/custom/plugins/symbol_usage.lua b/nvim/lua/custom/plugins/symbol_usage.lua index 868b010..dcae661 100644 --- a/nvim/lua/custom/plugins/symbol_usage.lua +++ b/nvim/lua/custom/plugins/symbol_usage.lua @@ -70,6 +70,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 }, }