Change kitty to wezterm

This commit is contained in:
2024-03-08 23:50:16 +03:00
parent 34080d561b
commit 89229e915f
2 changed files with 22 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ set $up k
set $right l set $right l
# Your preferred terminal emulator # Your preferred terminal emulator
set $term kitty set $term wezterm
# Your preferred application launcher # Your preferred application launcher
set $menu kickoff set $menu kickoff

21
config/.wezterm.lua Normal file
View File

@@ -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