summaryrefslogtreecommitdiff
path: root/dot_config/wezterm/wezterm.lua
diff options
context:
space:
mode:
authorIbrahim Muftee <ibrahim@muftee.net>2024-04-11 23:20:57 -0500
committerIbrahim Muftee <ibrahim@muftee.net>2026-07-01 00:23:31 -0400
commita99b211b3bec43ebe3cdfa1899cba227d1d569a4 (patch)
treea648712a5fa523f04670c32dd8eff6c2138b6669 /dot_config/wezterm/wezterm.lua
Initial commit
Diffstat (limited to 'dot_config/wezterm/wezterm.lua')
-rw-r--r--dot_config/wezterm/wezterm.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/dot_config/wezterm/wezterm.lua b/dot_config/wezterm/wezterm.lua
new file mode 100644
index 0000000..bdfcfcb
--- /dev/null
+++ b/dot_config/wezterm/wezterm.lua
@@ -0,0 +1,28 @@
+local wezterm = require("wezterm")
+local keys = require("keys")
+local chezmoi = require("chezmoi")
+
+local font = wezterm.font_with_fallback({
+ { family = "Iosevka Nerd Font" },
+ { family = "JetBrains Mono" },
+})
+
+local font_size = 12
+
+local config = {
+ font = font,
+ font_size = font_size,
+ color_scheme = "Gruvbox dark, medium (base16)", -- TODO: Create custom color scheme in separate module (colors.lua)
+ window_background_opacity = 0.9,
+
+ use_fancy_tab_bar = false,
+ show_tabs_in_tab_bar = false,
+ show_new_tab_button_in_tab_bar = false,
+
+ default_prog = { chezmoi.shell }, -- TODO: Change default shell when OS changes
+
+ leader = keys.leader,
+ keys = keys.key_bindings,
+}
+
+return config