include editor config in lazy disabled_plugins list
This commit is contained in:
parent
d72d935b35
commit
f8a489ea1a
|
@ -41,6 +41,7 @@ return {
|
||||||
"compiler",
|
"compiler",
|
||||||
"bugreport",
|
"bugreport",
|
||||||
"ftplugin",
|
"ftplugin",
|
||||||
|
"editorconfig",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -51,12 +51,12 @@ end
|
||||||
|
|
||||||
M.gitsigns = {
|
M.gitsigns = {
|
||||||
signs = {
|
signs = {
|
||||||
add = { text = '│' },
|
add = { text = "│" },
|
||||||
change = { text = '│' },
|
change = { text = "│" },
|
||||||
delete = { text = '' },
|
delete = { text = "" },
|
||||||
topdelete = { text = '‾' },
|
topdelete = { text = "‾" },
|
||||||
changedelete = { text = '~' },
|
changedelete = { text = "~" },
|
||||||
untracked = { text = '│' },
|
untracked = { text = "│" },
|
||||||
},
|
},
|
||||||
on_attach = function(bufnr)
|
on_attach = function(bufnr)
|
||||||
utils.load_mappings("gitsigns", { buffer = bufnr })
|
utils.load_mappings("gitsigns", { buffer = bufnr })
|
||||||
|
|
Loading…
Reference in New Issue