neovim-confs/lua/plex/plugins/extras/coding/editorconfig.lua

21 lines
308 B
Lua
Raw Normal View History

2023-09-06 00:26:45 +02:00
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,
},
}