From cd024f351456f7a03b2c06c80fd4a13e646940fb Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sun, 13 Nov 2022 19:39:42 +0100 Subject: [PATCH] chore(nvim): add comment --- nvim/after/plugin/codewindow.lua | 5 +++++ nvim/lua/kogakure/plugins.lua | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/nvim/after/plugin/codewindow.lua b/nvim/after/plugin/codewindow.lua index 48c75cf..21680b0 100644 --- a/nvim/after/plugin/codewindow.lua +++ b/nvim/after/plugin/codewindow.lua @@ -5,4 +5,9 @@ if not status then end codewindow.setup() + +-- mo - open the minimap +-- mc - close the minimap +-- mf - focus/unfocus the minimap +-- mm - toggle the minimap codewindow.apply_default_keybinds() diff --git a/nvim/lua/kogakure/plugins.lua b/nvim/lua/kogakure/plugins.lua index ad2bec0..4ef0b66 100644 --- a/nvim/lua/kogakure/plugins.lua +++ b/nvim/lua/kogakure/plugins.lua @@ -182,7 +182,7 @@ return packer.startup(function(use) -- Custom Motions use("christoomey/vim-sort-motion") -- gs use("tommcdo/vim-exchange") -- cx, cxx, X, cxc - use("easymotion/vim-easymotion") -- f/L + use("easymotion/vim-easymotion") -- f/L -- TMUX use("christoomey/vim-tmux-navigator")