Files
dotfiles/private_dot_config/nvim/lua/custom/chadrc.lua
2022-12-18 12:54:38 +02:00

18 lines
340 B
Lua

-- Just an example, supposed to be placed in /lua/custom/
local M = {}
vim.g.vimtex_view_method = 'zathura'
vim.g.vimtext_compiler_method = 'pdflatex'
-- make sure you maintain the structure of `core/default_config.lua` here,
-- example of changing theme:
M.ui = {
theme = "gruvbox",
}
M.plugins = require "custom.plugins"
return M