From 662dafc52b2c8a9426bb2197ab9246a8cda318e4 Mon Sep 17 00:00:00 2001 From: awy Date: Mon, 20 Oct 2025 20:55:26 +0300 Subject: nvqw --- .config/nvim/lsp/gitlab_ci_ls.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .config/nvim/lsp/gitlab_ci_ls.lua (limited to '.config/nvim/lsp/gitlab_ci_ls.lua') diff --git a/.config/nvim/lsp/gitlab_ci_ls.lua b/.config/nvim/lsp/gitlab_ci_ls.lua new file mode 100644 index 0000000..d2f80ab --- /dev/null +++ b/.config/nvim/lsp/gitlab_ci_ls.lua @@ -0,0 +1,26 @@ +---@brief +--- +--- https://github.com/alesbrelih/gitlab-ci-ls +--- +--- Language Server for Gitlab CI +--- +--- `gitlab-ci-ls` can be installed via cargo: +--- cargo install gitlab-ci-ls + +local util = require 'lspconfig.util' + +local cache_dir = vim.uv.os_homedir() .. '/.cache/gitlab-ci-ls/' + +---@type vim.lsp.Config +return { + cmd = { 'gitlab-ci-ls' }, + filetypes = { 'yaml.gitlab' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + on_dir(util.root_pattern('.git', '.gitlab*')(fname)) + end, + init_options = { + cache_path = cache_dir, + log_path = cache_dir .. '/log/gitlab-ci-ls.log', + }, +} -- cgit v1.2.3