starter/lua/config/options.lua

17 lines
498 B
Lua
Raw Normal View History

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"]])
2024-02-09 00:15:24 +08:00
vim.o.shell = "powershell"
vim.o.shellcmdflag = "-command"
vim.o.shellquote = '"'