summaryrefslogtreecommitdiff
path: root/dot_config/wezterm/wezterm.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/wezterm/wezterm.lua')
-rw-r--r--dot_config/wezterm/wezterm.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/dot_config/wezterm/wezterm.lua b/dot_config/wezterm/wezterm.lua
new file mode 100644
index 0000000..0f225a9
--- /dev/null
+++ b/dot_config/wezterm/wezterm.lua
@@ -0,0 +1,32 @@
+-- wezterm.lua
+-- Main wezterm config file
+
+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 width = 120
+local length = 40
+
+local config = {
+ font = font,
+ font_size = font_size,
+ initial_cols = width,
+ initial_rows = length,
+ color_scheme = "Gruvbox dark, medium (base16)",
+ use_fancy_tab_bar = false,
+ show_tabs_in_tab_bar = false,
+ show_new_tab_button_in_tab_bar = false,
+ default_prog = { chezmoi.shell },
+
+ leader = keys.leader,
+ keys = keys.key_bindings,
+}
+
+return config