manager/files/wezterm/wezterm.lua

24 lines
567 B
Lua

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