diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 20:40:30 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-29 20:40:30 +0200 |
commit | baefc021ae091547513ca93b50948ae2125487f9 (patch) | |
tree | 031e210dcf311dbe659d37350d238302a1c1a974 | |
parent | f5dc5ddb58ab0e754fef379e4d0ce785f6fe0883 (diff) |
Update lsp icons
-rw-r--r-- | fnl/config/lsp/handlers.fnl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fnl/config/lsp/handlers.fnl b/fnl/config/lsp/handlers.fnl index c9b7825..96b50e6 100644 --- a/fnl/config/lsp/handlers.fnl +++ b/fnl/config/lsp/handlers.fnl @@ -1,10 +1,10 @@ ;; Handlers for the requests and responses from and to the lsp server. (module config.lsp.handlers {autoload {util config.util nvim aniseed.nvim}}) -(def- signs [{:name :DiagnosticSignError :text ""} - {:name :DiagnosticSignWarn :text ""} - {:name :DiagnosticSignHint :text ""} - {:name :DiagnosticSignInfo :text ""}]) +(def- signs [{:name :DiagnosticSignError :text ""} + {:name :DiagnosticSignWarn :text ""} + {:name :DiagnosticSignHint :text ""} + {:name :DiagnosticSignInfo :text ""}]) (defn- apply-signs [] (each [_ sign (ipairs signs)] (vim.fn.sign_define sign.name |