summaryrefslogtreecommitdiff
path: root/.wezterm.lua
diff options
context:
space:
mode:
Diffstat (limited to '.wezterm.lua')
-rw-r--r--.wezterm.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/.wezterm.lua b/.wezterm.lua
new file mode 100644
index 0000000..51c95e5
--- /dev/null
+++ b/.wezterm.lua
@@ -0,0 +1,12 @@
+local wezterm = require 'wezterm'
+local config = wezterm.config_builder()
+
+config.color_scheme = 'GruvboxDarkHard'
+config.pane_focus_follows_mouse = true
+config.hide_tab_bar_if_only_one_tab = true
+
+config.colors = {
+ cursor_bg = "#d00000"
+}
+
+return config