21 lines
308 B
Lua
21 lines
308 B
Lua
|
return {
|
||
|
{
|
||
|
'sgur/vim-editorconfig',
|
||
|
lazy = false,
|
||
|
init = function()
|
||
|
vim.g.editorconfig_verbose = 1
|
||
|
vim.g.editorconfig_blacklist = {
|
||
|
filetype = {
|
||
|
'git.*',
|
||
|
'fugitive',
|
||
|
'help',
|
||
|
'lsp-.*',
|
||
|
'any-jump',
|
||
|
'gina-.*',
|
||
|
},
|
||
|
pattern = { '\\.un~$' },
|
||
|
}
|
||
|
end,
|
||
|
},
|
||
|
}
|