diff --git a/.config/nvim/lua/plugins/linting.lua b/.config/nvim/lua/plugins/linting.lua index ec63360..c092d6a 100644 --- a/.config/nvim/lua/plugins/linting.lua +++ b/.config/nvim/lua/plugins/linting.lua @@ -10,7 +10,6 @@ return { html = { 'htmlhint' }, json = { 'jsonlint' }, sh = { 'shellcheck' }, - zsh = { 'shellcheck' }, bash = { 'shellcheck' }, javascript = { 'eslint_d', 'trivy' }, typescript = { 'eslint_d' }, @@ -32,4 +31,4 @@ return { end, }) end, -} +} \ No newline at end of file diff --git a/.config/nvim/lua/plugins/prettier.lua b/.config/nvim/lua/plugins/prettier.lua index b2ba520..efee9ac 100644 --- a/.config/nvim/lua/plugins/prettier.lua +++ b/.config/nvim/lua/plugins/prettier.lua @@ -3,9 +3,9 @@ return { event = { 'BufReadPre', 'BufNewFile' }, opts = { formatters_by_ft = { - sh = { 'shellharden', 'shfmt' }, - bash = { 'shellharden', 'shfmt' }, - zsh = { 'shellharden', 'shfmt' }, + sh = { 'beautysh', 'shellharden' }, + bash = { 'beautysh', 'shellharden' }, + zsh = { 'beautysh' }, javascript = { 'prettier' }, typescript = { 'prettier' }, css = { 'prettier' }, @@ -32,4 +32,4 @@ return { timeout_ms = 1000, }, }, -} \ No newline at end of file +}