Added helix-gpt as an lsp to helix

This commit is contained in:
Tyler Mayoff 2025-03-18 15:26:12 -04:00
parent 04dd9d8c07
commit 01f8d5a296
No known key found for this signature in database
GPG key ID: FAE8714D991290A9
3 changed files with 22 additions and 0 deletions

View file

@ -62,6 +62,10 @@ in {
jdk17
conan
deno
lsp-ai
python312Packages.jedi-language-server
];
homebrew = {

View file

@ -21,6 +21,8 @@
black
ruff
unstable.copilot-language-server
swiftlint
unstable.helix-gpt
unstable.lsp-ai

View file

@ -3,6 +3,7 @@ clangd = { command = "clangd", args = ["--header-insertion=never"]}
biome = { command = "biome", args = ["lsp-proxy"] }
fish_lsp = {command = "fish-lsp", args = ["start"]}
slangd = {command = "slangd"}
gpt = {command = "helix-gpt", args = ["--handler", "copilot"]}
[[language]]
name = "fish"
@ -27,6 +28,21 @@ scope = "source.nix"
auto-format = true
formatter = { command = "alejandra", args = ["-q"] }
[[language]]
name = "cpp"
language-servers = [
"clangd",
"gpt"
]
[[language]]
name = "python"
language-servers = [
"ruff",
"pylsp",
"gpt"
]
[[language]]
name = "objc"
scope = "source.objc"