formatting and comments

This commit is contained in:
Valeriy Filippov
2026-03-11 11:20:38 +03:00
parent 892a7fe416
commit 304a31c1bf
5 changed files with 58 additions and 57 deletions

View File

@@ -1,12 +1,12 @@
-- https://github.com/neovim/nvim-lspconfig/blob/master/lsp/gitlab_ci_ls.lua
local cache_dir = vim.uv.os_homedir() .. '/.cache/gitlab-ci-ls/'
local cache_dir = vim.uv.os_homedir() .. "/.cache/gitlab-ci-ls/"
return {
cmd = { 'gitlab-ci-ls' },
filetypes = { 'yaml.gitlab' },
root_markers = { '.git', '.gitlab-ci.yml' },
init_options = {
cache_path = cache_dir,
log_path = cache_dir .. '/log/gitlab-ci-ls.log',
},
cmd = { "gitlab-ci-ls" },
filetypes = { "yaml.gitlab" },
root_markers = { ".git", ".gitlab-ci.yml" },
init_options = {
cache_path = cache_dir,
log_path = cache_dir .. "/log/gitlab-ci-ls.log",
},
}