diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-08-26 02:16:49 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-08-26 02:16:49 +0000 |
| commit | 3d97ec4174bcc750d70718ddedabf150536a5891 (patch) | |
| tree | 138f465cebb78d11e49bdde2702173c2fab35e08 | |
| parent | fix(copilot): device flow authentication #4038 (diff) | |
| download | nvim-lspconfig-3d97ec4174bcc750d70718ddedabf150536a5891.tar nvim-lspconfig-3d97ec4174bcc750d70718ddedabf150536a5891.tar.gz nvim-lspconfig-3d97ec4174bcc750d70718ddedabf150536a5891.tar.bz2 nvim-lspconfig-3d97ec4174bcc750d70718ddedabf150536a5891.tar.lz nvim-lspconfig-3d97ec4174bcc750d70718ddedabf150536a5891.tar.xz nvim-lspconfig-3d97ec4174bcc750d70718ddedabf150536a5891.tar.zst nvim-lspconfig-3d97ec4174bcc750d70718ddedabf150536a5891.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 30 | ||||
| -rw-r--r-- | doc/configs.txt | 22 |
2 files changed, 52 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index eeba5b2f..f6b2e6ea 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -18,6 +18,7 @@ Nvim by running `:help lspconfig-all`. - [ast_grep](#ast_grep) - [astro](#astro) - [atlas](#atlas) +- [atopile](#atopile) - [autohotkey_lsp](#autohotkey_lsp) - [autotools_ls](#autotools_ls) - [awk_ls](#awk_ls) @@ -976,6 +977,35 @@ Default config: --- +## atopile + +https://atopile.io/ + +A language server for atopile Programming Language. + +It comes with the atopile compiler, for installation see: [Installing atopile](https://docs.atopile.io/atopile/guides/install) + +Snippet to enable the language server: +```lua +vim.lsp.enable('atopile') +``` + +Default config: +- `cmd` : + ```lua + { "ato", "lsp", "start" } + ``` +- `filetypes` : + ```lua + { "ato" } + ``` +- `root_markers` : + ```lua + { "ato.yaml", ".ato", ".git" } + ``` + +--- + ## autohotkey_lsp https://github.com/thqby/vscode-autohotkey2-lsp diff --git a/doc/configs.txt b/doc/configs.txt index 3de91bc2..f45306dd 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -478,6 +478,28 @@ Default config: < ------------------------------------------------------------------------------ +atopile + +https://atopile.io/ + +A language server for atopile Programming Language. + +It comes with the atopile compiler, for installation see: [Installing atopile](https://docs.atopile.io/atopile/guides/install) + +Snippet to enable the language server: >lua + vim.lsp.enable('atopile') + + +Default config: +- cmd: >lua + { "ato", "lsp", "start" } +- filetypes: >lua + { "ato" } +- root_markers: >lua + { "ato.yaml", ".ato", ".git" } +< + +------------------------------------------------------------------------------ autohotkey_lsp https://github.com/thqby/vscode-autohotkey2-lsp |
