From f82b390aba75d188b9ad911351e865c10aed8c69 Mon Sep 17 00:00:00 2001 From: Galen Rowell Date: Thu, 19 Aug 2021 00:01:02 +1000 Subject: [PATCH] make cheatsheet enabled by default (#281) --- lua/chadrc.lua | 2 +- lua/default_config.lua | 2 +- lua/pluginList.lua | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/chadrc.lua b/lua/chadrc.lua index ed859b5b..54891723 100644 --- a/lua/chadrc.lua +++ b/lua/chadrc.lua @@ -62,7 +62,7 @@ M.plugin_status = { nvim_comment = true, neoscroll_nvim = true, telescope_media = true, - cheatsheet = false, + cheatsheet = true, } -- make sure you dont use same keys twice diff --git a/lua/default_config.lua b/lua/default_config.lua index 459b05f3..5b06ce21 100644 --- a/lua/default_config.lua +++ b/lua/default_config.lua @@ -61,7 +61,7 @@ M.plugin_status = { nvim_comment = true, neoscroll_nvim = true, telescope_media = true, - cheatsheet = false, + cheatsheet = true, } -- make sure you dont use same keys twice diff --git a/lua/pluginList.lua b/lua/pluginList.lua index 79ad14b5..df3cdcf4 100644 --- a/lua/pluginList.lua +++ b/lua/pluginList.lua @@ -184,6 +184,7 @@ return packer.startup(function() { "sudormrfbin/cheatsheet.nvim", disable = not plugin_status.cheatsheet, + event = "VimEnter", after = "telescope.nvim", config = function() require "plugins.chadsheet"