feat: add wezterm config

This commit is contained in:
Dan Anglin 2024-10-09 08:07:47 +01:00
parent 59a6969c25
commit 25fdb81517
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638
3 changed files with 26 additions and 0 deletions

24
files/wezterm/wezterm.lua Normal file
View file

@ -0,0 +1,24 @@
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
-- This is where you actually apply your config choices
config = {
color_scheme = 'Tokyo Night',
cursor_thickness = 1.75,
default_cursor_style = 'SteadyBar',
enable_tab_bar = false,
font = wezterm.font 'SauceCodePro Nerd Font Mono',
font_size = 10.50,
scrollback_lines = 10000,
window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
},
}
return config

View file

@ -192,6 +192,7 @@
"tmux", "tmux",
"user-dirs.dirs", "user-dirs.dirs",
"user-dirs.locale", "user-dirs.locale",
"wezterm",
"zk" "zk"
] ]
} }

View file

@ -66,6 +66,7 @@
"logrotate", "logrotate",
"river", "river",
"tmux", "tmux",
"wezterm",
"user-dirs.dirs", "user-dirs.dirs",
"user-dirs.locale" "user-dirs.locale"
] ]