diff options
Diffstat (limited to 'fnl')
| -rw-r--r-- | fnl/plugins/lsp/diagnostics.fnl | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/plugins/lsp/diagnostics.fnl b/fnl/plugins/lsp/diagnostics.fnl index 0ea5312..aa1bf4d 100644 --- a/fnl/plugins/lsp/diagnostics.fnl +++ b/fnl/plugins/lsp/diagnostics.fnl @@ -7,7 +7,7 @@                {:name :DiagnosticSignHint :text (. icons :hint)}                {:name :DiagnosticSignInfo :text (. icons :info)}]) -(fn apply-signs [] +(fn configure-signs []    (each [_ sign (ipairs signs)]      (vim.fn.sign_define sign.name {:texthl sign.name :text sign.text :numhl ""}))) @@ -24,7 +24,7 @@                         :prefix ""}})  (fn setup [] -  (apply-signs) +  (configure-signs)    (vim.diagnostic.config config)    (set vim.lsp.handlers.textDocument/hover         (vim.lsp.with {:border :rounded :width 60}))  |