mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-04-11 13:01:00 +02:00
31 lines
672 B
Lua
31 lines
672 B
Lua
---@brief
|
|
---
|
|
--- https://fortitude.readthedocs.io/en/stable/
|
|
---
|
|
--- Fortitude is a Fortran linter built in Rust and inspired by (and build upon) Ruff
|
|
---
|
|
--- ```sh
|
|
--- # Install With uv:
|
|
--- uv tool install fortitude-lint@latest
|
|
---
|
|
--- # Install with pip:
|
|
--- pip install fortitude-lint
|
|
--- ```
|
|
---
|
|
--- **LSP is available in Fortitude `v0.8.0`.**
|
|
---
|
|
--- Refer to the [documentation](https://fortitude.readthedocs.io/en/stable/editors/) for more details.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'fortitude', 'server' },
|
|
filetypes = { 'fortran' },
|
|
root_markers = {
|
|
'fpm.toml',
|
|
'fortitude.toml',
|
|
'.fortitude.toml',
|
|
'.git',
|
|
},
|
|
settings = {},
|
|
}
|