feat: zako
This commit is contained in:
22
lua/plugins/lsp-lens.lua
Normal file
22
lua/plugins/lsp-lens.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
local SymbolKind = vim.lsp.protocol.SymbolKind
|
||||
|
||||
return {
|
||||
'VidocqH/lsp-lens.nvim',
|
||||
opts = {
|
||||
enable = true,
|
||||
include_declaration = false, -- Reference include declaration
|
||||
sections = { -- Enable / Disable specific request, formatter example looks 'Format Requests'
|
||||
definition = false,
|
||||
references = true,
|
||||
implements = true,
|
||||
git_authors = true,
|
||||
},
|
||||
ignore_filetype = {
|
||||
"prisma",
|
||||
},
|
||||
-- Target Symbol Kinds to show lens information
|
||||
target_symbol_kinds = { SymbolKind.Function, SymbolKind.Method, SymbolKind.Interface },
|
||||
-- Symbol Kinds that may have target symbol kinds as children
|
||||
wrapper_symbol_kinds = { SymbolKind.Class, SymbolKind.Struct },
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user