AutoYADM commit: 2024-12-13 14:45:02

This commit is contained in:
Daniel Fichtinger 2024-12-13 14:45:02 -05:00
parent 66b2c61487
commit e208c2c31a
3 changed files with 7 additions and 3 deletions

View file

@ -1,10 +1,10 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here
local map = vim.keymap.set
local wk = require("which-key")
map({ "n" }, "<C-Cr>", function()
local map = vim.keymap.set
map({ "n" }, "^[[91;5u", function()
vim.notify("Done!")
end)