From e0503e4a81dd49f893e995faf8ac5af78c0a5b71 Mon Sep 17 00:00:00 2001 From: Matt Leong Date: Wed, 10 Nov 2021 14:24:48 -0800 Subject: [PATCH] feat(config): clean up --- lua/cosmic/config/examples/mappings.lua | 2 +- lua/cosmic/config/examples/plugins.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/cosmic/config/examples/mappings.lua b/lua/cosmic/config/examples/mappings.lua index d7eef91..47d8bfe 100644 --- a/lua/cosmic/config/examples/mappings.lua +++ b/lua/cosmic/config/examples/mappings.lua @@ -15,4 +15,4 @@ map('i', 'jj', '', { noremap = true, silent = true }) -- map('t', ...) -- Example: Disable find files keymap -cmd('unmap f') +-- cmd('unmap f') diff --git a/lua/cosmic/config/examples/plugins.lua b/lua/cosmic/config/examples/plugins.lua index 1543cd4..f6205d6 100644 --- a/lua/cosmic/config/examples/plugins.lua +++ b/lua/cosmic/config/examples/plugins.lua @@ -9,7 +9,7 @@ local plugins = { }, }, disable = { -- disabling some core plugins may mean you'll have to remap some keybindings - 'auto-session', + --[[ 'auto-session', 'autocomplete', 'colorizer', 'dashboard', @@ -22,7 +22,7 @@ local plugins = { 'terminal', 'theme', 'todo-comments', - 'treesitter', + 'treesitter', ]] }, }