feat(nvim): add nabla.nvim for math notation

This commit is contained in:
Price Hiller 2023-12-22 08:55:23 -06:00
parent c6b79121c6
commit d114443c3a
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,20 @@
return {
{
"jbyuki/nabla.nvim",
keys = {
{ ";nn", function() require("nabla").popup() end, desc = "Nabla: Popup" },
{
";nv",
function()
require("nabla").toggle_virt()
end,
desc = "Nabla: Toggle Virt Lines"
}
},
ft = {
"org",
"tex"
},
config = false
}
}

View File

@ -5,6 +5,7 @@ return {
config = function()
vim.g.vimtext_view_method = "zathura"
vim.g.vimtex_view_general_viewer = "zathura"
vim.g.vimtex_syntax_conceal_disable = true
end,
},
}