rework qalc mappings

This commit is contained in:
2025-02-08 20:06:11 -05:00
parent 191f0cb798
commit 36febe9fe3
-2
View File
@@ -17,7 +17,6 @@ local autocmd = vim.api.nvim_create_autocmd
-- end -- end
-- ━━━━━━━━━━━━━━━━━━━━━━━ Set up Qalc keymappings ━━━━━━━━━━━━━━━━━━━━━━━ -- ━━━━━━━━━━━━━━━━━━━━━━━ Set up Qalc keymappings ━━━━━━━━━━━━━━━━━━━━━━━
if pcall(require, 'qalc') then
-- Create a group for filetype-specific mappings -- Create a group for filetype-specific mappings
autogrp('QalcFileTypeMappings', { clear = true }) autogrp('QalcFileTypeMappings', { clear = true })
@@ -53,7 +52,6 @@ if pcall(require, 'qalc') then
vim.api.nvim_buf_delete(0, { force = true }) vim.api.nvim_buf_delete(0, { force = true })
end end
end, { bang = true }) end, { bang = true })
end
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━ Set up highlights ━━━━━━━━━━━━━━━━━━━━━━━━━━ -- ━━━━━━━━━━━━━━━━━━━━━━━━━━ Set up highlights ━━━━━━━━━━━━━━━━━━━━━━━━━━
local load_highlight = require('utils.highlight') local load_highlight = require('utils.highlight')