From 68b10654380331001cb27ea1e39b7288410a44de Mon Sep 17 00:00:00 2001 From: Branch Vincent Date: Thu, 9 Jan 2025 09:09:20 -0800 Subject: [PATCH] helix: fix fish-lsp --- .config/helix/languages.toml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index 66ff71b..3c6dba8 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -1,12 +1,14 @@ # TODO: add to helix -[language-server] -fish-lsp = { command = "fish-lsp", args = ["start"] } - [language-server.deno] command = "deno" args = ["lsp"] config = { deno = { enable = true } } +[language-server.fish-lsp] +command = "fish-lsp" +args = ["start"] +environment = { "fish_lsp_show_client_popups" = "false" } + [[language]] name = "fish" language-servers = ["fish-lsp"]