summaryrefslogtreecommitdiff
path: root/wezterm
diff options
context:
space:
mode:
Diffstat (limited to 'wezterm')
-rwxr-xr-xwezterm/wezterm.lua15
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