2023-01-07 17:52:40 +08:00
|
|
|
-- Options are automatically loaded before lazy.nvim startup
|
|
|
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
|
|
|
-- Add any additional options here
|
2023-06-30 13:53:11 +08:00
|
|
|
--
|
|
|
|
local opt = vim.opt
|
|
|
|
|
2023-11-22 20:46:37 +08:00
|
|
|
opt.background = "dark"
|
|
|
|
opt.guifont = "Fira Code:h12"
|
|
|
|
vim.api.nvim_set_var("gruvbox_contrast_dark", "hard")
|
2023-12-17 19:51:45 +08:00
|
|
|
|
|
|
|
vim.cmd([[let &t_Cs = "\e[4:3m"]])
|
|
|
|
vim.cmd([[let &t_Ce = "\e[4:0m"]])
|