From 23ba46b50f1c9cda28e5c58205924e2c9c0d1b22 Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Fri, 18 Apr 2025 22:45:05 -0400 Subject: [PATCH] AutoYADM commit: 2025-04-18 22:45:05 --- .config/fish/functions/nv.fish | 5 +++++ .config/helix/languages.toml | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .config/fish/functions/nv.fish diff --git a/.config/fish/functions/nv.fish b/.config/fish/functions/nv.fish new file mode 100644 index 00000000..ad82ec70 --- /dev/null +++ b/.config/fish/functions/nv.fish @@ -0,0 +1,5 @@ +function nv --description 'nvchecker script' + nvchecker + echo Changes:\n + nvcmp +end diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index 0ed65174..a92a4158 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -11,6 +11,10 @@ inlayHints.genericTypes = true # format = {enable = true} # validation = true +[language-server.codebook] +command = "codebook-lsp" +args = ["serve"] + [language-server.harper-ls] command = "harper-ls" args = ["--stdio"] @@ -248,7 +252,7 @@ preview = true [[language]] name = "python" -language-servers = ["basedpyright", "ruff"] +language-servers = ["basedpyright", "ruff", "codebook"] auto-format = true # ruff LSP can format too, including range format # formatter = { command = "ruff", args = ["format", "-"] }