mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
13 lines
299 B
Lua
13 lines
299 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/huderlem/poryscript-pls
|
|
---
|
|
--- Language server for poryscript (a high level scripting language for GBA-era Pokémon decompilation projects)
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'poryscript-pls' },
|
|
filetypes = { 'pory' },
|
|
root_markers = { '.git' },
|
|
}
|