Auto commit: 2024-11-08 03:15:01
This commit is contained in:
parent
89577ba646
commit
67009e9e31
2 changed files with 8 additions and 0 deletions
|
@ -19,6 +19,10 @@ vim.api.nvim_create_autocmd("FileType", {
|
||||||
hi def link mathBlock Statement
|
hi def link mathBlock Statement
|
||||||
hi def link mathInline Statement
|
hi def link mathInline Statement
|
||||||
]])
|
]])
|
||||||
|
-- vim.g.vimtex_syntax_conceal = {
|
||||||
|
-- math = 1,
|
||||||
|
-- oplus = "⊕",
|
||||||
|
-- }
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
vim.api.nvim_create_autocmd({ "FileType" }, {
|
vim.api.nvim_create_autocmd({ "FileType" }, {
|
||||||
|
|
|
@ -7,6 +7,10 @@ return {
|
||||||
vim.g.vimtex_viewer_method = "zathura"
|
vim.g.vimtex_viewer_method = "zathura"
|
||||||
vim.g.vimtex_quickfix_open_on_warning = 0
|
vim.g.vimtex_quickfix_open_on_warning = 0
|
||||||
vim.g.vimtex_compiler_silent = 1
|
vim.g.vimtex_compiler_silent = 1
|
||||||
|
vim.g.vimtex_syntax_conceal = {
|
||||||
|
math = 1,
|
||||||
|
oplus = "⊕",
|
||||||
|
}
|
||||||
end,
|
end,
|
||||||
keys = {
|
keys = {
|
||||||
{ "<localLeader>l", "", desc = "+vimtex" },
|
{ "<localLeader>l", "", desc = "+vimtex" },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue