aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/air.lua
blob: 47dbfc1c38f46ac2388f513b25699d9ec29cc4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---@brief
---
--- https://github.com/posit-dev/air
---
--- Air is an R formatter and language server, written in Rust.
---
--- Refer to the [documentation](https://posit-dev.github.io/air/editors.html) for more details.

---@type vim.lsp.Config
return {
  cmd = { 'air', 'language-server' },
  filetypes = { 'r' },
  root_markers = { 'air.toml', '.air.toml', '.git' },
}