editorconfig: Migrate to builtin plugin (#335)

This commit is contained in:
traxys 2023-04-15 15:21:25 +02:00 committed by GitHub
parent 3797094d19
commit 121566a267
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 65 additions and 65 deletions

View file

@ -0,0 +1,17 @@
{
disable = {
editorconfig.enable = false;
};
example = {
editorconfig.enable = true;
editorconfig.properties.foo = ''
function(bufnr, val, opts)
if opts.charset and opts.charset ~= "utf-8" then
error("foo can only be set when charset is utf-8", 0)
end
vim.b[bufnr].foo = val
end
'';
};
}