mirror of
https://github.com/CompeyDev/my-nvim-setup.git
synced 2024-12-12 12:50:37 +00:00
move font configs to basic.lua
This commit is contained in:
parent
6f5e78405f
commit
fcea0a8a4e
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
HOME = os.getenv "HOME"
|
HOME = os.getenv "HOME"
|
||||||
|
|
||||||
|
-- Font
|
||||||
|
vim.o.guifont = "CaskaydiaCove Nerd Font Mono:h13"
|
||||||
|
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.opt.cursorline = true
|
vim.opt.cursorline = true
|
||||||
vim.opt.updatetime = 200
|
vim.opt.updatetime = 200
|
||||||
|
@ -40,7 +43,7 @@ vim.opt.showcmd = true -- display command in bottom bar
|
||||||
-- Search
|
-- Search
|
||||||
vim.opt.incsearch = true -- starts searching as soon as typing, without enter needed
|
vim.opt.incsearch = true -- starts searching as soon as typing, without enter needed
|
||||||
vim.opt.ignorecase = true -- ignore letter case when searching
|
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.matchtime = 2 -- delay before showing matching paren
|
||||||
vim.opt.mps = vim.o.mps .. ",<:>"
|
vim.opt.mps = vim.o.mps .. ",<:>"
|
||||||
|
|
Loading…
Reference in a new issue