update font config
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions

This commit is contained in:
Harivansh Rathi 2026-04-03 02:48:43 +00:00 committed by Hari
parent c849ff2e36
commit ff602381b4
3 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,6 @@
local o, opt = vim.o, vim.opt
local gui_font_family = "Berkeley Mono"
local gui_font_size = 15
o.number = true
o.relativenumber = true
@ -40,3 +42,5 @@ o.foldenable = true
o.updatetime = 250
o.mouse = 'a'
o.clipboard = 'unnamedplus'
if vim.g.neovide then o.guifont = ("%s:h%s"):format(gui_font_family, gui_font_size) end