We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37bd377 commit 83f376fCopy full SHA for 83f376f
lua/lspconfig/configs/just.lua
@@ -0,0 +1,17 @@
1
+return {
2
+ default_config = {
3
+ cmd = { 'just-lsp' },
4
+ filetypes = { 'just' },
5
+ root_dir = function(fname)
6
+ return vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])
7
+ end,
8
+ single_file_support = true,
9
+ },
10
+ docs = {
11
+ description = [[
12
+https://github.com/terror/just-lsp
13
+
14
+`just-lsp` is an LSP for just built on top of the tree-sitter-just parser.
15
+]],
16
17
+}
0 commit comments