From a7f3bc8f5d8e7fbb3e6b631f9898de3e7d3bba7b Mon Sep 17 00:00:00 2001 From: Matthew Wozniak Date: Thu, 12 Dec 2024 22:34:06 -0500 Subject: configs 2025 initial setup --- lua/util.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lua/util.lua (limited to 'lua') diff --git a/lua/util.lua b/lua/util.lua new file mode 100644 index 0000000..d1f08b8 --- /dev/null +++ b/lua/util.lua @@ -0,0 +1,7 @@ +local M = {} + +M.nn = function(lh, rh) + vim.keymap.set('n', lh, rh, { noremap = true, silent = true }) +end + +return M -- cgit v1.2.3-54-g00ecf