summaryrefslogtreecommitdiff
path: root/fnl/config/lsp
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-16 11:49:45 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-10-16 11:49:45 +0200
commit3f1367c3a460f89cafc80f134fbf420543ffb5e6 (patch)
tree568cb0dc2cb9386b760cc2b7e6c2e922a8442f82 /fnl/config/lsp
parent97335fff57e4cca08bf642d65791c5c18ce8b485 (diff)
Remove colon for util autoload
Diffstat (limited to 'fnl/config/lsp')
-rw-r--r--fnl/config/lsp/handlers.fnl2
-rw-r--r--fnl/config/lsp/mason-lspconfig.fnl2
-rw-r--r--fnl/config/lsp/mason-null-ls.fnl2
-rw-r--r--fnl/config/lsp/mason.fnl2
-rw-r--r--fnl/config/lsp/null-ls.fnl2
-rw-r--r--fnl/config/lsp/settings/jsonls.fnl2
6 files changed, 6 insertions, 6 deletions
diff --git a/fnl/config/lsp/handlers.fnl b/fnl/config/lsp/handlers.fnl
index 913a5a2..c9b7825 100644
--- a/fnl/config/lsp/handlers.fnl
+++ b/fnl/config/lsp/handlers.fnl
@@ -1,5 +1,5 @@
;; Handlers for the requests and responses from and to the lsp server.
-(module config.lsp.handlers {autoload {:util :config.util nvim aniseed.nvim}})
+(module config.lsp.handlers {autoload {util config.util nvim aniseed.nvim}})
(def- signs [{:name :DiagnosticSignError :text ""}
{:name :DiagnosticSignWarn :text ""}
diff --git a/fnl/config/lsp/mason-lspconfig.fnl b/fnl/config/lsp/mason-lspconfig.fnl
index 7a03ced..130fc17 100644
--- a/fnl/config/lsp/mason-lspconfig.fnl
+++ b/fnl/config/lsp/mason-lspconfig.fnl
@@ -1,5 +1,5 @@
;; TBD
-(module config.lsp.mason-lspconfig {autoload {:util :config.util}})
+(module config.lsp.mason-lspconfig {autoload {util config.util}})
(def- servers [:bashls
:clangd
diff --git a/fnl/config/lsp/mason-null-ls.fnl b/fnl/config/lsp/mason-null-ls.fnl
index e739b9b..33cf93f 100644
--- a/fnl/config/lsp/mason-null-ls.fnl
+++ b/fnl/config/lsp/mason-null-ls.fnl
@@ -1,5 +1,5 @@
;; Ensure that tools needed for null-ls are installed.
-(module config.mason-null-ls {autoload {:util :config.util}})
+(module config.mason-null-ls {autoload {util config.util}})
(def- opts {:ensure_installed [:flake8
:golangci-lint
diff --git a/fnl/config/lsp/mason.fnl b/fnl/config/lsp/mason.fnl
index 7c58d94..adc60a4 100644
--- a/fnl/config/lsp/mason.fnl
+++ b/fnl/config/lsp/mason.fnl
@@ -1,5 +1,5 @@
;; Mason manages external tooling, e.g. lsp, formatters, and linters.
-(module config.lsp.mason {autoload {:util :config.util}})
+(module config.lsp.mason {autoload {util config.util}})
(def- opts {:ui {:icons {:package_installed "✓"
:package_pending "➜"
diff --git a/fnl/config/lsp/null-ls.fnl b/fnl/config/lsp/null-ls.fnl
index 7efb079..7ebd25e 100644
--- a/fnl/config/lsp/null-ls.fnl
+++ b/fnl/config/lsp/null-ls.fnl
@@ -1,5 +1,5 @@
;; Adds LSP diagnostics and formatting.
-(module config.lsp.null-ls {autoload {:util :config.util}})
+(module config.lsp.null-ls {autoload {util config.util}})
(let [null-ls (util.prequire :null-ls)]
(let [formatting null-ls.builtins.formatting
diff --git a/fnl/config/lsp/settings/jsonls.fnl b/fnl/config/lsp/settings/jsonls.fnl
index 3fe9299..55c6115 100644
--- a/fnl/config/lsp/settings/jsonls.fnl
+++ b/fnl/config/lsp/settings/jsonls.fnl
@@ -1,5 +1,5 @@
;; Json schema store catalog language server.
-(module config.lsp.settings.jsonls {autoload {:util :config.util}})
+(module config.lsp.settings.jsonls {autoload {util config.util}})
(let [schemastore (util.prequire :schemastore)]
{:init_options {:providerFormatter false}