From 60db2ec6266e203f2625501488e745ae9c837ecf Mon Sep 17 00:00:00 2001
From: siduck76 <siduckk76@protonmail.com>
Date: Sun, 29 Aug 2021 12:20:15 +0530
Subject: [PATCH] disable some plugins by default

---
 lua/chadrc.lua | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lua/chadrc.lua b/lua/chadrc.lua
index f730f8e..988081f 100644
--- a/lua/chadrc.lua
+++ b/lua/chadrc.lua
@@ -74,7 +74,7 @@ M.options.plugin = {
 
 -- enable and disable plugins (false for disable)
 M.plugin_status = {
-   autosave = true, -- to autosave files
+   autosave = false, -- to autosave files
    blankline = true, -- beautified blank lines
    bufferline = true, -- buffer shown as tabs
    cheatsheet = true, -- fuzzy search your commands/keymappings
@@ -88,9 +88,9 @@ M.plugin_status = {
    lspsignature = true, -- lsp enhancements
    neoformat = true, -- universal formatter
    neoscroll = true, -- smooth scroll
-   telescope_media = true, -- see media files in telescope picker
-   truezen = true, -- no distraction mode for nvim
-   vim_fugitive = true, -- git in nvim
+   telescope_media = false, -- see media files in telescope picker
+   truezen = false, -- no distraction mode for nvim
+   vim_fugitive = false, -- git in nvim
    vim_matchup = true, -- % magic, match it but improved
 }