From 57ce387402dd5f5ec83fd08dc707af6fa54743cb Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 16 Jun 2024 18:58:57 -0600 Subject: [PATCH] wezterm completion for fish autosuggestions --- modules/common/applications/wezterm.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/modules/common/applications/wezterm.nix b/modules/common/applications/wezterm.nix index 840865c..300b501 100644 --- a/modules/common/applications/wezterm.nix +++ b/modules/common/applications/wezterm.nix @@ -61,7 +61,7 @@ config.theme.colors.base06 # silver ]; brights = [ - config.theme.colors.base04 # grey + config.theme.colors.base03 # grey config.theme.colors.base08 # red config.theme.colors.base0B # lime config.theme.colors.base0A # yellow @@ -135,6 +135,14 @@ initial_rows = 80, initial_cols = 200, + + keys = { + { + key = 'Enter', + mods = 'SHIFT', + action = wezterm.action.SendString '\x1F' + }, + }, } ''; };