feat(nvim): add keybinding to alias <C-t>

This commit is contained in:
Price Hiller 2024-02-14 16:11:38 -06:00
parent e9ce630ca1
commit 2952598440
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -105,6 +105,8 @@ M.setup = function()
-- Binding to allow shift tab dedent
vim.keymap.set("i", "<S-Tab>", "<C-d>", { silent = true, desc = "Insert: Dedent" })
-- Binding to allow shift space indent
vim.keymap.set("i", "<S-Space>", "<C-t>", { silent = true, desc = "Insert: Indent" })
-- Insert an Em Dash in insert mode
vim.keymap.set("i", "<A-->", "", { silent = true, desc = "Insert: Em Dash" })