summaryrefslogtreecommitdiffstatshomepage
path: root/wezterm/.config
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-07-15 14:32:22 -0500
committerToby Vincent <tobyv13@gmail.com>2022-07-15 14:41:41 -0500
commitdde798294b22a87bdaa92cb950b9173ed91fbf49 (patch)
treed168f86a6785540b0eb40c5941d80b184d83b90f /wezterm/.config
parentcc4c4a6969e6b2805beb25c173a2ddd66e69a4c7 (diff)
feat(wezterm): add wezterm config
Diffstat (limited to 'wezterm/.config')
-rw-r--r--wezterm/.config/wezterm/wezterm.lua37
1 files changed, 37 insertions, 0 deletions
diff --git a/wezterm/.config/wezterm/wezterm.lua b/wezterm/.config/wezterm/wezterm.lua
new file mode 100644
index 0000000..84c908a
--- /dev/null
+++ b/wezterm/.config/wezterm/wezterm.lua
@@ -0,0 +1,37 @@
+local wezterm = require("wezterm")
+
+if wezterm.target_triple == "x86_64-pc-windows-msvc" then
+ local is_win = true
+end
+
+local config = {
+ default_prog = {
+ "/usr/bin/zsh",
+ "-l",
+ "-c",
+ "tmux new -As home",
+ },
+
+ enable_tab_bar = false,
+ color_scheme = "Gruvbox dark, hard (base16)",
+ window_padding = {
+ left = 0,
+ right = 0,
+ top = 0,
+ bottom = 0,
+ },
+
+ window_background_opacity = 0.9,
+ font = wezterm.font_with_fallback({ "FiraCode Nerd Font", "FireCodeNF" }),
+ font_size = 11,
+
+ -- disable_default_key_bindings = true,
+ keys = {
+ { key = "-", mods = "CTRL", action = "DecreaseFontSize" },
+ { key = "=", mods = "CTRL", action = "IncreaseFontSize" },
+ },
+
+ alternate_buffer_wheel_scroll_speed = 1,
+}
+
+return config