diff --git a/ghostty b/ghostty deleted file mode 100644 index 7cd06fa..0000000 --- a/ghostty +++ /dev/null @@ -1,6 +0,0 @@ -font-family = FiraCode Nerd Font -theme = Kanagawa Dragon -mouse-hide-while-typing = true -minimum-contrast = 1.1 -font-size = 14 -command = /usr/local/bin/tmux diff --git a/wezterm.lua b/wezterm.lua new file mode 100644 index 0000000..a531377 --- /dev/null +++ b/wezterm.lua @@ -0,0 +1,8 @@ +local wezterm = require 'wezterm' +local config = wezterm.config_builder() + +config.default_prog = { '/usr/bin/tmux' } +config.color_scheme = 'Kanagawa (Gogh)' +config.enable_tab_bar = false + +return config