From f8a489ea1a670569eead0fe5651c0c48add743e8 Mon Sep 17 00:00:00 2001 From: siduck Date: Thu, 1 Jun 2023 22:07:27 +0530 Subject: [PATCH] include editor config in lazy disabled_plugins list --- lua/plugins/configs/lazy_nvim.lua | 1 + lua/plugins/configs/others.lua | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lua/plugins/configs/lazy_nvim.lua b/lua/plugins/configs/lazy_nvim.lua index cd170bd..2575dea 100644 --- a/lua/plugins/configs/lazy_nvim.lua +++ b/lua/plugins/configs/lazy_nvim.lua @@ -41,6 +41,7 @@ return { "compiler", "bugreport", "ftplugin", + "editorconfig", }, }, }, diff --git a/lua/plugins/configs/others.lua b/lua/plugins/configs/others.lua index e4110f2..dafd5a4 100644 --- a/lua/plugins/configs/others.lua +++ b/lua/plugins/configs/others.lua @@ -51,12 +51,12 @@ end M.gitsigns = { signs = { - add = { text = '│' }, - change = { text = '│' }, - delete = { text = '󰍵' }, - topdelete = { text = '‾' }, - changedelete = { text = '~' }, - untracked = { text = '│' }, + add = { text = "│" }, + change = { text = "│" }, + delete = { text = "󰍵" }, + topdelete = { text = "‾" }, + changedelete = { text = "~" }, + untracked = { text = "│" }, }, on_attach = function(bufnr) utils.load_mappings("gitsigns", { buffer = bufnr })