diff options
| author | anand <anand.panchdhari@gmail.com> | 2025-12-17 15:57:55 +0530 |
|---|---|---|
| committer | anand <anand.panchdhari@gmail.com> | 2025-12-17 15:57:55 +0530 |
| commit | b7ef29a8886a57aadb787807a7c6cf74c1f0ed3a (patch) | |
| tree | 366a68240fbc9da6b1d567bd6c46d1350ad814de /wezterm/wezterm.lua | |
Nixos
Diffstat (limited to 'wezterm/wezterm.lua')
| -rwxr-xr-x | wezterm/wezterm.lua | 15 |
1 files changed, 15 insertions, 0 deletions
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 |
