mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
18 lines
367 B
Lua
18 lines
367 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/DanielGavin/ols
|
|
---
|
|
--- `Odin Language Server`.
|
|
|
|
local util = require 'lspconfig.util'
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'ols' },
|
|
filetypes = { 'odin' },
|
|
root_dir = function(bufnr, on_dir)
|
|
local fname = vim.api.nvim_buf_get_name(bufnr)
|
|
on_dir(util.root_pattern('ols.json', '.git', '*.odin')(fname))
|
|
end,
|
|
}
|