1
0
Fork 0

add neovim back to this repo

fix nvim directory
This commit is contained in:
Luca Bilke 2023-11-23 21:27:17 +01:00
commit 3ab8308615
43 changed files with 2263 additions and 1 deletions
.config/nvim/lua/plugins/misc

View file

@ -0,0 +1,11 @@
local M = { "lervag/vimtex" }
M.init = function()
vim.g.vimtex_view_method = "zathura"
vim.g.tex_flavor = "latex"
vim.g.vimtex_quickfix_mode = 0
vim.o.conceallevel = 1
vim.g.tex_conceal = 'abdmg'
end
return M