feat(qalc): add qalc plugin for mathing

Adds the qalc plugin to allow for math equations to be evaluated
This commit is contained in:
2024-08-04 17:58:20 -04:00
parent b622454835
commit 55cb66892e
+14
View File
@@ -282,4 +282,18 @@ return {
require("lualine").setup(config)
end,
},
{ -- Qalc
"Apeiros-46B/qalc.nvim",
cmd = {
"Qalc",
"QalcAttach",
"QalcYank",
},
keys = {
{ "<leader>qc", "<cmd>Qalc<cr>", desc = "Qalc" },
},
opts = {
set_ft = "qalc",
},
},
}