Move lsp config to local file structure
This commit is contained in:
parent
e5c3bb2492
commit
20801272fc
383 changed files with 11829 additions and 114 deletions
26
.config/nvim/lsp/gitlab_ci_ls.lua
Normal file
26
.config/nvim/lsp/gitlab_ci_ls.lua
Normal file
|
|
@ -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',
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue