summaryrefslogtreecommitdiff
path: root/fnl/plugins/lsp/diagnostics.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/plugins/lsp/diagnostics.fnl')
-rw-r--r--fnl/plugins/lsp/diagnostics.fnl10
1 files changed, 6 insertions, 4 deletions
diff --git a/fnl/plugins/lsp/diagnostics.fnl b/fnl/plugins/lsp/diagnostics.fnl
index e9eca47..8676924 100644
--- a/fnl/plugins/lsp/diagnostics.fnl
+++ b/fnl/plugins/lsp/diagnostics.fnl
@@ -1,9 +1,11 @@
;; Handlers for the requests and responses from and to the lsp server.
-(local signs [{:name :DiagnosticSignError :text ""}
- {:name :DiagnosticSignWarn :text ""}
- {:name :DiagnosticSignHint :text ""}
- {:name :DiagnosticSignInfo :text ""}])
+(local icons (require :plugins.icons))
+
+(local signs [{:name :DiagnosticSignError :text (. icons :error)}
+ {:name :DiagnosticSignWarn :text (. icons :warn)}
+ {:name :DiagnosticSignHint :text (. icons :hint)}
+ {:name :DiagnosticSignInfo :text (. icons :info)}])
(fn apply-signs []
(each [_ sign (ipairs signs)]