diff options
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/plugins/editor/trouble.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/lsp/diagnostics.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/ui/lualine.fnl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/fnl/plugins/editor/trouble.fnl b/fnl/plugins/editor/trouble.fnl index d38a063..5c989de 100644 --- a/fnl/plugins/editor/trouble.fnl +++ b/fnl/plugins/editor/trouble.fnl @@ -69,7 +69,7 @@ :auto_jump [:lsp_definitions] ;; for the given modes, automatically jump if there is only a single result :signs {;; icons / text used for a diagnostic - :error "" + :error "" :warning "" :hint "" :information "" diff --git a/fnl/plugins/lsp/diagnostics.fnl b/fnl/plugins/lsp/diagnostics.fnl index 1ac2e42..e9eca47 100644 --- a/fnl/plugins/lsp/diagnostics.fnl +++ b/fnl/plugins/lsp/diagnostics.fnl @@ -1,6 +1,6 @@ ;; Handlers for the requests and responses from and to the lsp server. -(local signs [{:name :DiagnosticSignError :text ""} +(local signs [{:name :DiagnosticSignError :text ""} {:name :DiagnosticSignWarn :text ""} {:name :DiagnosticSignHint :text ""} {:name :DiagnosticSignInfo :text ""}]) diff --git a/fnl/plugins/ui/lualine.fnl b/fnl/plugins/ui/lualine.fnl index ce12ff0..170e8a9 100644 --- a/fnl/plugins/ui/lualine.fnl +++ b/fnl/plugins/ui/lualine.fnl @@ -27,7 +27,7 @@ (local diagnostics {1 :diagnostics :sources [:nvim_diagnostic] :sections [:error :warn] - :symbols {:error " " :warn " "} + :symbols {:error " " :warn " "} :colored false :disabled_buftypes [:nvim-tree] :padding 0 |