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 })