diff --git a/foot.ini b/foot.ini deleted file mode 100644 index bbc7352..0000000 --- a/foot.ini +++ /dev/null @@ -1,3 +0,0 @@ -[main] -font = FiraCode Nerd Font:style=Regular:size=12 -shell = tmux diff --git a/wezterm.lua b/wezterm.lua deleted file mode 100644 index be87d39..0000000 --- a/wezterm.lua +++ /dev/null @@ -1,19 +0,0 @@ -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 -config.skip_close_confirmation_for_processes_named = {} -config.colors = { - cursor_bg = "#FFFF00" -} -config.mouse_bindings = { - { - event = { Up = { streak = 1, button = 'Left' } }, - mods = 'CTRL', - action = wezterm.action.OpenLinkAtMouseCursor, - }, -} - -return config