summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-07 23:57:55 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-04-07 23:57:55 +0200
commit76ff550565d121dfba3aab122e922e66d650e47f (patch)
tree4f9b3c24ea7f2292c56b0d5bc4bf51d79270e7d5
parent9c1138ccbf26b1e2c234057274d0fb3767de651b (diff)
fix(lsp installer): call setup
-rw-r--r--fnl/config/lsp/lsp-installer.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/config/lsp/lsp-installer.fnl b/fnl/config/lsp/lsp-installer.fnl
index b9a7c6f..f77a4be 100644
--- a/fnl/config/lsp/lsp-installer.fnl
+++ b/fnl/config/lsp/lsp-installer.fnl
@@ -21,4 +21,4 @@
(let [lsp-installer (util.load-plugin :lsp-installer)]
(lsp-installer.on_server_ready (fn [server]
(let [opts (get-server-opts server)]
- server:setup opts))))
+ (server:setup opts)))))