dotfiles/nvchad/custom/chadrc.lua
2024-08-09 11:33:23 +01:00

25 lines
441 B
Lua

local M = {}
M.plugins = "custom.plugins"
M.options = {
user = function()
vim.opt.tabstop = 2
vim.opt.softtabstop = 2
vim.opt.shiftwidth = 2
end,
}
M.ui = {
theme = "everblush",
theme_toggle = { "everblush", "everblush" },
lazyload = false,
}
M.mappings = require "custom.mappings"
vim.cmd "autocmd BufRead,BufEnter *.astro set filetype=astro"
vim.cmd "set rnu"
vim.cmd "autocmd InsertLeave *.tex update"
return M