From 55cb66892e669c8f048fc0fa135cd8209cebe9f1 Mon Sep 17 00:00:00 2001 From: rootiest Date: Sun, 4 Aug 2024 17:58:20 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(qalc):=20add=20qalc=20plugin?= =?UTF-8?q?=20for=20mathing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the qalc plugin to allow for math equations to be evaluated --- lua/plugins/util.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index 8b6cb5f..16095cc 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -282,4 +282,18 @@ return { require("lualine").setup(config) end, }, + { -- Qalc + "Apeiros-46B/qalc.nvim", + cmd = { + "Qalc", + "QalcAttach", + "QalcYank", + }, + keys = { + { "qc", "Qalc", desc = "Qalc" }, + }, + opts = { + set_ft = "qalc", + }, + }, }