Change kitty to wezterm
This commit is contained in:
@@ -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
21
config/.wezterm.lua
Normal 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
|
||||||
Reference in New Issue
Block a user