diff --git a/config/.config/sway/config b/config/.config/sway/config index 91dac97..8e84db2 100644 --- a/config/.config/sway/config +++ b/config/.config/sway/config @@ -12,7 +12,7 @@ set $up k set $right l # Your preferred terminal emulator -set $term kitty +set $term wezterm # Your preferred application launcher set $menu kickoff diff --git a/config/.wezterm.lua b/config/.wezterm.lua new file mode 100644 index 0000000..067e29a --- /dev/null +++ b/config/.wezterm.lua @@ -0,0 +1,21 @@ +local wezterm = require("wezterm") + +local config = wezterm.config_builder() + +config.color_scheme = "ayu" + +config.enable_tab_bar = false +config.enable_wayland = true + +config.window_padding = { + left = 0, + right = 0, + top = 0, + bottom = 0, +} + +config.font = wezterm.font("JetBrains Mono", { + weight = "Medium", +}) + +return config