Add neovim config

This commit is contained in:
Valeriy Filippov
2026-03-05 16:34:38 +03:00
commit 210e99d004
36 changed files with 845 additions and 0 deletions

12
nvim/lsp/gitlabcils.lua Normal file
View File

@@ -0,0 +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/'
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',
},
}