diff --git a/sway/.config/sway/config b/sway/.config/sway/config index 99f59e1..e85be10 100644 --- a/sway/.config/sway/config +++ b/sway/.config/sway/config @@ -11,7 +11,7 @@ set $down j set $up k set $right l # Your preferred terminal emulator -set $term kitty +set $term wezterm set $browser firefox set $emacs "emacsclient --create-frame --alternate-editor='emacs'" # Your preferred application launcher diff --git a/wezterm/.config/wezterm/wezterm.lua b/wezterm/.config/wezterm/wezterm.lua new file mode 100644 index 0000000..38bd802 --- /dev/null +++ b/wezterm/.config/wezterm/wezterm.lua @@ -0,0 +1,15 @@ +local wezterm = require 'wezterm' + +local config = wezterm.config_builder() + +config.color_scheme = 'Catppuccin Mocha' +config.font = wezterm.font('Iosevka Nerd Font Mono') +config.font_size = 15.0 + +config.default_cursor_style = 'SteadyBar' + +config.hide_tab_bar_if_only_one_tab = true +config.use_fancy_tab_bar = false +config.tab_bar_at_bottom = true + +return config