Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeville committed Jan 2, 2025
1 parent 93dd0b2 commit 7c83793
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions config/common/.config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
local wezterm = require('wezterm')

local config = {
color_scheme = 'Gruvbox dark, soft (base16)',
bold_brightens_ansi_colors = true,
font = wezterm.font('AnonymicePro Nerd Font'),
font_rules = {
{
intensity = 'Bold',
italic = false,
font = wezterm.font('AnonymicePro Nerd Font', { weight = 'Regular' }),
},
local cfg = {}

{
intensity = 'Bold',
italic = true,
font = wezterm.font('AnonymicePro Nerd Font', { weight = 'Regular' }),
},
-- Colorscheme
cfg.color_scheme = 'Gruvbox dark, soft (base16)'
cfg.bold_brightens_ansi_colors = true

-- Font
cfg.font = wezterm.font('AnonymicePro Nerd Font')
cfg.font_rules = {
{
intensity = 'Bold',
italic = false,
font = wezterm.font('AnonymicePro Nerd Font', { weight = 'Regular' }),
},
font_size = 14,
line_height = 1.15,
hide_tab_bar_if_only_one_tab = true,
window_padding = {
left = 4,
right = 4,
top = 2,
bottom = 2,

{
intensity = 'Bold',
italic = true,
font = wezterm.font('AnonymicePro Nerd Font', { weight = 'Regular' }),
},
}
cfg.font_size = 14
cfg.line_height = 1.15

-- Window
cfg.hide_tab_bar_if_only_one_tab = true
cfg.window_padding = { left = 4, right = 4, top = 2, bottom = 2 }

return config
return cfg

0 comments on commit 7c83793

Please sign in to comment.