mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 08:36:09 +02: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,
|
|
}
|