summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'nvim')
-rw-r--r--nvim/lua/config/lsp.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/nvim/lua/config/lsp.lua b/nvim/lua/config/lsp.lua
index c1399e9..e9b7f97 100644
--- a/nvim/lua/config/lsp.lua
+++ b/nvim/lua/config/lsp.lua
@@ -41,7 +41,7 @@ vim.lsp.config("yamlls", {
settings = {
yaml = {
schemas = require("schemastore").yaml.schemas({
- -- I can stop using that until this schema stops using $ref in root:
+ -- I am using this workaround until the official schama stops using $ref in root:
-- https://api.bitbucket.org/schemas/pipelines-configuration
replace = {
["bitbucket-pipelines"] = {
@@ -81,4 +81,5 @@ vim.lsp.config("jdtls", {
})
-- Zig language server
vim.lsp.enable("zls")
+-- sudo pacman -S lua-language-server
vim.lsp.enable("lua_ls")