diff options
author | aktersnurra <grydholm@kth.se> | 2022-04-10 23:34:21 +0200 |
---|---|---|
committer | aktersnurra <grydholm@kth.se> | 2022-04-10 23:34:21 +0200 |
commit | be910efb9e059a962cffc030dec7ea1ea3771e7c (patch) | |
tree | ce6733d6167b7d3ee3852530437b21656bbee81f /fnl/config/lsp/init.fnl | |
parent | a8ef65821f7fd7e2cdae39579e4a7dfabd75e58a (diff) |
fix(lsp): remove do add opts return
Diffstat (limited to 'fnl/config/lsp/init.fnl')
-rw-r--r-- | fnl/config/lsp/init.fnl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fnl/config/lsp/init.fnl b/fnl/config/lsp/init.fnl index aa61f61..b26dd7a 100644 --- a/fnl/config/lsp/init.fnl +++ b/fnl/config/lsp/init.fnl @@ -3,7 +3,6 @@ {autoload {util util}}) (let [_ (util.load-plugin :lspconfig)] - (do (require :config.lsp.lsp-installer) - ((require :config.lsp.handlers).setup) - (require :config.lsp.null-ls))) + (require :config.lsp.handlers) + (require :config.lsp.null-ls)) |