Fix conform issue and sync fork

This commit is contained in:
Andre Raposo 2025-02-01 13:08:15 -03:00
parent 4c35ad40ed
commit de80b447c4
1 changed files with 12 additions and 12 deletions

View File

@ -648,22 +648,22 @@ require('lazy').setup({
python = { 'isort', 'black' },
--
-- You can use a sub-list to tell conform to run *until* a formatter
-- is found.
javascript = { { 'prettierd', 'prettier' } },
javascriptreact = { { 'prettierd', 'prettier' } },
typescript = { { 'prettierd', 'prettier' } },
typescriptreact = { { 'prettierd', 'prettier' } },
css = { { 'prettierd', 'prettier' } },
scss = { { 'prettierd', 'prettier' } },
json = { { 'prettierd', 'prettier' } },
graphql = { { 'prettierd', 'prettier' } },
markdown = { { 'prettierd', 'prettier' } },
yaml = { { 'prettierd', 'prettier' } },
-- is fond.
javascript = { 'prettierd', 'prettier', stop_after_first = true },
javascriptreact = { 'prettierd', 'prettier', stop_after_first = true },
typescript = { 'prettierd', 'prettier', stop_after_first = true },
typescriptreact = { 'prettierd', 'prettier', stop_after_first = true },
css = { 'prettierd', 'prettier', stop_after_first = true },
scss = { 'prettierd', 'prettier', stop_after_first = true },
json = { 'prettierd', 'prettier', stop_after_first = true },
graphql = { 'prettierd', 'prettier', stop_after_first = true },
markdown = { 'prettierd', 'prettier', stop_after_first = true },
yaml = { 'prettierd', 'prettier', stop_after_first = true },
},
},
},
{ -- Autocompletion
{ -- Atocompletion
'hrsh7th/nvim-cmp',
event = 'InsertEnter',
dependencies = {