Colorscheme default change, font config, indentscope enable

This commit is contained in:
2023-12-12 21:40:31 -05:00
parent 330bc020c8
commit 1f50bdd574
4 changed files with 44 additions and 37 deletions

View File

@@ -2,7 +2,13 @@
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
vim.opt.guifont = "Berkeley Mono Variable:h13"
if vim.g.neovide then
-- Variable font looks too bold on windows
vim.opt.guifont = "Berkeley Mono:h10.5:#e-subpixelantialias"
vim.opt.linespace = 1
else
vim.opt.guifont = "Berkeley Mono Variable:h13"
end
-- idk if it does anything cause I have to set it in the nvim-cmp settings too
vim.opt.completeopt = "menu,menuone,noinsert,noselect"