top of page


My Wezterm config
local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.font_size = 12
config.color_scheme = 'Google (dark) (terminal.sexy)'
config.font = wezterm.font('JetBrainsMono Nerd Font Mono', {weight = 'Regular', italic = false})
config.window_background_opacity = 0.9
config.hide_tab_bar_if_only_one_tab = true
config.hide_mouse_cursor_when_typing = true
config.default_cursor_style = 'SteadyUnderline'
config.enable_scroll_bar = true
config.window_decorations = 'NONE'
config.audible_bell = "Disabled"
config.initial_rows = 40
config.initial_cols = 160
config.foreground_text_hsb = {
hue = 1.0,
-- saturation = 0.0,
brightness = 1.1,
}
--config.background = {
-- {
-- source = { File = {path = '/home/armann/Pictures/wallpapers/lux.jpg'}},
-- opacity = 1.0,
-- width = "100%",
-- hsb = {brightness = 0.05},
-- }
--}
-- and finally, return the configuration to wezterm
return config
My Starship config
I think my config is probably 99% default but I'll put it here anyway. :) I have to put it in a file because the format is really broken on the blog.
If you want to use it, remove the .txt ending.
Comments
Share Your ThoughtsBe the first to write a comment.
bottom of page