Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeville committed Jan 2, 2025
1 parent 2b65cd3 commit 82a5423
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 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 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" }),
},
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' }),
},

{
intensity = "Bold",
italic = true,
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 = 2,
right = 2,
top = 2,
bottom = 2,
},
{
intensity = 'Bold',
italic = true,
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 = 2,
right = 2,
top = 2,
bottom = 2,
},
}

return config

0 comments on commit 82a5423

Please sign in to comment.