Skip to content

Commit

Permalink
feat: add pico8-ls support
Browse files Browse the repository at this point in the history
  • Loading branch information
russoalberto committed Mar 2, 2024
1 parent 9553725 commit 5322a91
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions lua/lspconfig/server_configurations/pico8_ls.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'pico8-ls', '--stdio' },
filetypes = { 'p8' },
root_dir = util.root_pattern '*.p8',
settings = {},
},
docs = {
description = [[
https://github.com/japhib/pico8-ls
Full language support for the PICO-8 dialect of Lua.
]],
},
}

0 comments on commit 5322a91

Please sign in to comment.