From 4186430c4e70b6ca3f5283435e4f7c6fb4febae3 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Sun, 19 Dec 2021 13:26:53 -0500 Subject: [PATCH] Updated keymaps --- nvim/.config/nvim/lua/mappings.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/nvim/.config/nvim/lua/mappings.lua b/nvim/.config/nvim/lua/mappings.lua index 0095fb6..55d0e62 100644 --- a/nvim/.config/nvim/lua/mappings.lua +++ b/nvim/.config/nvim/lua/mappings.lua @@ -1,6 +1,6 @@ local keymap = vim.api.nvim_set_keymap -default_options = {noremap = true, silent = true} -expr_options = {noremap = true, expr = true, silent = true} +local default_options = {noremap = true, silent = true} +-- local expr_options = {noremap = true, expr = true, silent = true} -- map the leader key keymap('n', '', '', default_options) @@ -16,7 +16,6 @@ keymap('i', '', ':wa', default_options) keymap("v", "p", "\"_dP", default_options) -- buffer focus -local opts = { noremap = true } keymap('n', '', 'j', default_options) keymap('n', '', 'h', default_options) keymap('n', '', 'k', default_options)