home: vim: null-ls: restrict POSIX to bare 'sh'

This commit is contained in:
Bruno BELANYI 2023-05-09 20:22:12 +01:00
parent 0b64c9caa7
commit 102dc4cc76
1 changed files with 2 additions and 0 deletions

View File

@ -116,6 +116,8 @@ null_ls.register({
-- Indent with 4 spaces, simplify the code, indent switch cases,
-- add space after redirection, use POSIX
extra_args = { "-i", "4", "-s", "-ci", "-sr", "-ln", "posix" },
-- Restrict to POSIX sh
filetypes = { "sh" },
-- Only used if available
condition = utils.is_executable_condition("shfmt"),
}),