feat: random beautification
This commit is contained in:
parent
18f7104625
commit
9660893b91
15 changed files with 348 additions and 246 deletions
8
lsp/bicep.lua
Normal file
8
lsp/bicep.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
---@type vim.lsp.Config
|
||||
|
||||
local bicep_lsp_bin = "/Users/oliver.ladner/bicep-langserver/Bicep.LangServer.dll"
|
||||
return {
|
||||
cmd = { "/opt/homebrew/opt/dotnet@8/libexec/dotnet", bicep_lsp_bin },
|
||||
root_markers = { ".git" },
|
||||
filetypes = { "bicep" },
|
||||
}
|
||||
7
lsp/docker-compose.lua
Normal file
7
lsp/docker-compose.lua
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
---@type vim.lsp.Config
|
||||
return {
|
||||
cmd = { "docker-compose-langserver", "--stdio" },
|
||||
root_markers = { "docker_compose*.yml", "docker-compose.yml" },
|
||||
filetypes = { "yaml.docker-compose" },
|
||||
single_file_support = true,
|
||||
}
|
||||
5
lsp/woke.lua
Normal file
5
lsp/woke.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---@type vim.lsp.Config
|
||||
return {
|
||||
cmd = { "woke", "--stdin" },
|
||||
filetypes = { "markdown", "text", "gitcommit", "plaintext" },
|
||||
}
|
||||
6
lsp/write-good.lua
Normal file
6
lsp/write-good.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---@type vim.lsp.Config
|
||||
return {
|
||||
cmd = { "write-good", "/dev/stdin" },
|
||||
-- root_markers = { ".md" },
|
||||
filetypes = { "markdown", "text", "gitcommit" },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue