mirror of
https://github.com/boxpositron/absolute-dotfiles.git
synced 2026-02-28 03:30:37 +00:00
feat(wezterm.lua): add a new Wezterm configuration file with custom settings for a better user experience
This commit is contained in:
36
.config/wezterm/wezterm.lua
Normal file
36
.config/wezterm/wezterm.lua
Normal file
@@ -0,0 +1,36 @@
|
||||
local wezterm = require("wezterm")
|
||||
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
config = {
|
||||
automatically_reload_config = true,
|
||||
enable_tab_bar = false,
|
||||
window_close_confirmation = "NeverPrompt",
|
||||
window_decorations = "RESIZE",
|
||||
default_cursor_style = "BlinkingBlock",
|
||||
cursor_blink_rate = 0,
|
||||
color_scheme = "tokyonight",
|
||||
font = wezterm.font("FiraCode Nerd Font", { weight = 450, stretch = "Normal", style = "Normal" }),
|
||||
font_size = 12.5,
|
||||
background = {
|
||||
{
|
||||
source = {
|
||||
Color = "#1a1b26",
|
||||
},
|
||||
width = "100%",
|
||||
height = "100%",
|
||||
opacity = 0.95,
|
||||
|
||||
}
|
||||
},
|
||||
window_padding = {
|
||||
left = 3,
|
||||
right = 3,
|
||||
top = 20,
|
||||
bottom = 0,
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
|
||||
return config
|
||||
Reference in New Issue
Block a user