From e418928fa34fcdfe8f3d09b040fb1c20511d9feb Mon Sep 17 00:00:00 2001 From: Jaroslaw Konik Date: Fri, 18 Apr 2025 12:37:07 +0200 Subject: [PATCH] update --- ghostty | 6 ------ wezterm.lua | 8 ++++++++ 2 files changed, 8 insertions(+), 6 deletions(-) delete mode 100644 ghostty create mode 100644 wezterm.lua 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