From 50f3074e56d491361f76ff5621b14aa0d7fecd06 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 29 Mar 2025 17:00:07 -0400 Subject: [PATCH] AutoYADM commit: 2025-03-29 17:00:07 --- .config/fish/fish_variables | 2 +- .config/helix/languages.toml | 29 +++++++++++++++++++---------- 2 files changed, 20 insertions(+), 11 deletions(-) diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables index 2757197f..a959d101 100644 --- a/.config/fish/fish_variables +++ b/.config/fish/fish_variables @@ -65,7 +65,7 @@ SETUVAR fish_pager_color_selected_background:\x1d SETUVAR fish_pager_color_selected_completion:\x1d SETUVAR fish_pager_color_selected_description:\x1d SETUVAR fish_pager_color_selected_prefix:\x1d -SETUVAR fish_user_paths:/home/fic/\x2ecargo/bin\x1e/usr/local/bin +SETUVAR fish_user_paths:/home/fic/go/bin\x1e/home/fic/\x2ecargo/bin\x1e/usr/local/bin SETUVAR linode_ip:172\x2e105\x2e6\x2e137 SETUVAR sponge_allow_previously_successful:true SETUVAR sponge_delay:2 diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index 644a7791..ed895386 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -62,15 +62,28 @@ command = "iwes" [[language]] name = "markdown" -file-types = ["md", "livemd", "markdown", "mdx", "mkd", "mkdn", "mdwn", "mdown", "markdn", "mdtxt", "mdtext", "workbook", { glob = "PULLREQ_EDITMSG" } ] +file-types = [ + "md", + "livemd", + "markdown", + "mdx", + "mkd", + "mkdn", + "mdwn", + "mdown", + "markdn", + "mdtxt", + "mdtext", + "workbook", + { glob = "PULLREQ_EDITMSG" }, +] # language-servers = ["ltex-ls-plus", "marksman", "scls"] language-servers = ["harper-ls", "marksman", "scls"] -formatter = { command = "dprint", args = ["fmt", "--stdin", "md" ] } +formatter = { command = "dprint", args = ["fmt", "--stdin", "md"] } # depends on aerc auto-format = false - [[language]] name = "stub" scope = "text.stub" @@ -168,10 +181,7 @@ scope = "source.vim" injection-regex = "vim" comment-token = '"' indent = { tab-width = 4, unit = "\t" } -file-types = [ - "vim", - { glob = ".vimrc" }, -] +file-types = ["vim", { glob = ".vimrc" }] # [[grammar]] # name = "mail" @@ -237,10 +247,9 @@ injection-regex = "go" file-types = ["go"] roots = ["go.work", "go.mod"] auto-format = true +formatter = { command = "goimports" } comment-token = "//" block-comment-tokens = { start = "/*", end = "*/" } -language-servers = [ "gopls", "golangci-lint-lsp", "typos-lsp" ] +language-servers = ["gopls", "typos-lsp"] # TODO: gopls needs utf-8 offsets? indent = { tab-width = 4, unit = "\t" } - -