diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-23 21:22:24 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-23 21:22:24 +0200 |
commit | 4932d32cae9a2a63226b67e6678d459b773f1f8b (patch) | |
tree | 5b7d3fb35afe2e9f067f73ff70742e87c84d7342 /fnl/config/lsp/init.fnl | |
parent | d3f68e913454fb9cfa555ab112a23c3d86e6bec4 (diff) |
fix(lsp): error loading capabilities and format
Diffstat (limited to 'fnl/config/lsp/init.fnl')
-rw-r--r-- | fnl/config/lsp/init.fnl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fnl/config/lsp/init.fnl b/fnl/config/lsp/init.fnl index c4a461d..38c1873 100644 --- a/fnl/config/lsp/init.fnl +++ b/fnl/config/lsp/init.fnl @@ -3,5 +3,6 @@ (let [_ (util.load-plugin :lspconfig)] (require :config.lsp.lsp-installer) - (require :config.lsp.handlers) + (let [handlers (require :config.lsp.handlers)] + (handlers.setup)) (require :config.lsp.null-ls)) |