mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-06 17:16:09 +02:00
36 lines
951 B
Lua
36 lines
951 B
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
return {
|
|
default_config = {
|
|
cmd = { 'sixtyfps-lsp' },
|
|
filetypes = { 'sixtyfps' },
|
|
single_file_support = true,
|
|
},
|
|
docs = {
|
|
description = [=[
|
|
https://github.com/sixtyfpsui/sixtyfps
|
|
`SixtyFPS`'s language server
|
|
|
|
You can build and install `sixtyfps-lsp` binary with `cargo`:
|
|
```sh
|
|
cargo install sixtyfps-lsp
|
|
```
|
|
|
|
Vim does not have built-in syntax for the `sixtyfps` filetype currently.
|
|
|
|
This can be added via an autocmd:
|
|
|
|
```lua
|
|
vim.cmd [[ autocmd BufRead,BufNewFile *.60 set filetype=sixtyfps ]]
|
|
```
|
|
|
|
or by installing a filetype plugin such as https://github.com/RustemB/sixtyfps-vim
|
|
]=],
|
|
},
|
|
}
|