From 483ec847e6996ce4f54b97c95759f2b644b9b957 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 31 Mar 2025 23:02:52 +0300 Subject: use ork --- dotfiles/helix/config.toml | 2 +- dotfiles/helix/languages.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dotfiles/helix/config.toml b/dotfiles/helix/config.toml index 0a1e200..7529426 100644 --- a/dotfiles/helix/config.toml +++ b/dotfiles/helix/config.toml @@ -1,4 +1,4 @@ -theme = "kanagawa" +theme = "kanagawa-dragon" [editor] bufferline = "always" diff --git a/dotfiles/helix/languages.toml b/dotfiles/helix/languages.toml index 61da107..26d14c0 100644 --- a/dotfiles/helix/languages.toml +++ b/dotfiles/helix/languages.toml @@ -6,6 +6,8 @@ formatter = { command = "goimports" } language-servers = [ "gopls", "golangci-lint-lsp", "gpt" ] [language-server.gpt] +# Fork from https://github.com/sigmaSd/helix-gpt +# deno run --allow-net --allow-env $HOME/git/helix-gpt/src/app.ts --handler copilot command = "helix-gpt" args = [ "--logFile", "helix-gpt.log"] -- cgit v1.2.3 From 715a90473c4dd9d7365e8f51e8c5033c11d32e89 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 31 Mar 2025 23:20:50 +0300 Subject: add comment --- dotfiles/helix/config.toml | 2 +- dotfiles/helix/languages.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dotfiles/helix/config.toml b/dotfiles/helix/config.toml index 7529426..67ef1fc 100644 --- a/dotfiles/helix/config.toml +++ b/dotfiles/helix/config.toml @@ -1,4 +1,4 @@ -theme = "kanagawa-dragon" +theme = "kaolin-light" [editor] bufferline = "always" diff --git a/dotfiles/helix/languages.toml b/dotfiles/helix/languages.toml index 26d14c0..bd66865 100644 --- a/dotfiles/helix/languages.toml +++ b/dotfiles/helix/languages.toml @@ -22,10 +22,12 @@ functionTypeParameters = true parameterNames = true rangeVariableTypes = true +# go install github.com/nametake/golangci-lint-langserver@latest │ [language-server.golangci-lint-lsp] command = "golangci-lint-langserver" # golangci-lint-langserver depepds/calls golangci-lint +# go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest [language-server.golangci-lint-lsp.config] command = ["golangci-lint", "run", "--out-format", "json", "--issues-exit-code=1"] -- cgit v1.2.3