move font configs to basic.lua

This commit is contained in:
Erica Marigold 2024-03-05 12:31:55 +05:30
parent 6f5e78405f
commit fcea0a8a4e
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -1,5 +1,8 @@
HOME = os.getenv "HOME"
-- Font
vim.o.guifont = "CaskaydiaCove Nerd Font Mono:h13"
vim.opt.termguicolors = true
vim.opt.cursorline = true
vim.opt.updatetime = 200
@ -40,7 +43,7 @@ vim.opt.showcmd = true -- display command in bottom bar
-- Search
vim.opt.incsearch = true -- starts searching as soon as typing, without enter needed
vim.opt.ignorecase = true -- ignore letter case when searching
vim.opt.smartcase = true -- case insentive unless capitals used in search
vim.opt.smartcase = true -- case insensitive unless capitals used in search
vim.opt.matchtime = 2 -- delay before showing matching paren
vim.opt.mps = vim.o.mps .. ",<:>"