Skip to content

Commit

Permalink
Update font name broken by update.
Browse files Browse the repository at this point in the history
  • Loading branch information
theherk committed Dec 12, 2023
1 parent 624f5f0 commit dc04c5b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .config/alacritty/alacritty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ scrolling:
history: 10000
font:
normal:
family: VictorMono Nerd Font
family: VictorMono NF
bold:
family: VictorMono Nerd Font
family: VictorMono NF
size: 20.0
draw_bold_text_with_bright_colors: false
custom_cursor_colors: true
Expand Down
4 changes: 2 additions & 2 deletions .config/codium/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"codeium.enableSearch": true,
"editor.codeLensFontFamily": "VictorMono Nerd Font",
"editor.fontFamily": "VictorMono Nerd Font, Menlo, Monaco, 'Courier New', monospace",
"editor.codeLensFontFamily": "VictorMono NF",
"editor.fontFamily": "VictorMono NF, Menlo, Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"editor.formatOnSave": true,
Expand Down
6 changes: 3 additions & 3 deletions .config/doom/config.org
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ User identification. You can find more information in the [[https://www.gnu.org/

#+begin_src elisp
(setq
doom-font (font-spec :family "VictorMono Nerd Font" :size 20)
doom-big-font (font-spec :family "VictorMono Nerd Font" :size 24)
doom-variable-pitch-font (font-spec :family "VictorMono Nerd Font" :size 20))
doom-font (font-spec :family "VictorMono NF" :size 20)
doom-big-font (font-spec :family "VictorMono NF" :size 24)
doom-variable-pitch-font (font-spec :family "VictorMono NF" :size 20))

#+end_src

Expand Down
2 changes: 1 addition & 1 deletion .config/nvim/lua/config/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ vim.opt.foldlevelstart = 6
vim.g.vim_markdown_folding_level = 2

-- Neovide
vim.o.guifont = "VictorMono Nerd Font:h18"
vim.o.guifont = "VictorMono NF:h18"
local alpha = function()
return string.format("%x", math.floor(255 * vim.g.transparency))
end
Expand Down
2 changes: 1 addition & 1 deletion .config/wezterm/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function module.apply_to_config(config)
saturation = 0.66,
brightness = 0.54,
}
config.font = wezterm.font("VictorMono Nerd Font")
config.font = wezterm.font("VictorMono NF")
config.font_size = 19
config.tab_bar_at_bottom = true
config.tab_max_width = 96
Expand Down

0 comments on commit dc04c5b

Please sign in to comment.