Skip to content

Commit

Permalink
feat: Add support for Uiua
Browse files Browse the repository at this point in the history
  • Loading branch information
ckafi committed Oct 5, 2023
1 parent 71b3961 commit bc13ca4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions lua/lspconfig/server_configurations/uiua.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'uiua', 'lsp' },
filetypes = { 'uiua' },
root_dir = util.find_git_ancestor,
},
docs = {
description = [[
https://github.com/uiua-lang/uiua/
The builtin language server of the Uiua interpreter.
The Uiua interpreter can be installed with `cargo install uiua`
]],
default_config = {
cmd = { 'uiua', 'lsp' },
filetypes = { 'uiua' },
root_dir = [[util.find_git_ancestor]],
},
},
}

0 comments on commit bc13ca4

Please sign in to comment.