From 73540b652350706bbd79075714aca17c12e39d12 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 17 Sep 2022 17:44:51 -0500 Subject: [PATCH] refactor(nvim): set cmdline toggle to ldr>s>l --- dots/.nvim-environments/primary/config/lua/core/mappings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.nvim-environments/primary/config/lua/core/mappings.lua b/dots/.nvim-environments/primary/config/lua/core/mappings.lua index 7f9f5b97..ea7b6e06 100755 --- a/dots/.nvim-environments/primary/config/lua/core/mappings.lua +++ b/dots/.nvim-environments/primary/config/lua/core/mappings.lua @@ -38,7 +38,7 @@ M.setup = function() end, { silent = true, desc = "Toggle Diagnostics" }) -- Toggle showing command bar - vim.keymap.set("n", "cl", function() + vim.keymap.set("n", "sc", function() local current_cmdheight = vim.opt.cmdheight:get() if current_cmdheight > 0 then vim.opt.cmdheight = 0