diff options
Diffstat (limited to 'fnl')
-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 |