dotfiles/mzte-nv/conf/lua/lsp.fnl

21 lines
868 B
Plaintext
Raw Normal View History

2023-04-22 17:26:08 +02:00
;; Hover-Highlights
(fn on-lsp-attach [args]
(local buf args.buf)
(local client (vim.lsp.get_client_by_id args.data.client_id))
(when client.server_capabilities.documentHighlightProvider
;; Symbol highlighting
(vim.api.nvim_create_autocmd :CursorHold
{:callback vim.lsp.buf.document_highlight})
(vim.api.nvim_create_autocmd :CursorHoldI
{:callback vim.lsp.buf.document_highlight})
(vim.api.nvim_create_autocmd :CursorMoved
{:callback vim.lsp.buf.clear_references})))
(vim.api.nvim_create_autocmd :LspAttach {:callback on-lsp-attach})
;; Highlight in bold font
(local hlgroups [:LspReferenceText :LspReferenceRead :LspReferenceWrite])
(each [_ hl (ipairs hlgroups)]
(vim.api.nvim_set_hl 0 hl {:bold true
:bg "#6272a4"}))