From b7ef29a8886a57aadb787807a7c6cf74c1f0ed3a Mon Sep 17 00:00:00 2001 From: anand Date: Wed, 17 Dec 2025 15:57:55 +0530 Subject: Nixos --- wezterm/wezterm.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 wezterm/wezterm.lua (limited to 'wezterm/wezterm.lua') diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua new file mode 100755 index 0000000..f3c28b6 --- /dev/null +++ b/wezterm/wezterm.lua @@ -0,0 +1,15 @@ +local wezterm = require 'wezterm' +local config = {} +config.font = wezterm.font 'JetBrains Mono' +config.font_size = 12 +config.window_decorations = "NONE" +config.hide_tab_bar_if_only_one_tab = true +config.window_close_confirmation = 'NeverPrompt' +local act = wezterm.action +config.keys = { + { key = 'K', mods = 'SHIFT|CTRL', action = act.ScrollByLine(-3) }, + { key = 'J', mods = 'SHIFT|CTRL', action = act.ScrollByLine(3) }, + { key = 'UpArrow', mods = 'SHIFT|CTRL', action = act.ScrollByLine(-10) }, + { key = 'DownArrow', mods = 'SHIFT|CTRL', action = act.ScrollByLine(10) }, +} +return config -- cgit v1.2.3