From fcea0a8a4ea109a757ab345554694aff286ce6d3 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Tue, 5 Mar 2024 12:31:55 +0530 Subject: [PATCH] move font configs to basic.lua --- lua/basic.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/basic.lua b/lua/basic.lua index e98fca1..4dd5a0c 100644 --- a/lua/basic.lua +++ b/lua/basic.lua @@ -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 .. ",<:>"