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' }, python = { 'isort', 'black' },
-- --
-- You can use a sub-list to tell conform to run *until* a formatter -- You can use a sub-list to tell conform to run *until* a formatter
-- is found. -- is fond.
javascript = { { 'prettierd', 'prettier' } }, javascript = { 'prettierd', 'prettier', stop_after_first = true },
javascriptreact = { { 'prettierd', 'prettier' } }, javascriptreact = { 'prettierd', 'prettier', stop_after_first = true },
typescript = { { 'prettierd', 'prettier' } }, typescript = { 'prettierd', 'prettier', stop_after_first = true },
typescriptreact = { { 'prettierd', 'prettier' } }, typescriptreact = { 'prettierd', 'prettier', stop_after_first = true },
css = { { 'prettierd', 'prettier' } }, css = { 'prettierd', 'prettier', stop_after_first = true },
scss = { { 'prettierd', 'prettier' } }, scss = { 'prettierd', 'prettier', stop_after_first = true },
json = { { 'prettierd', 'prettier' } }, json = { 'prettierd', 'prettier', stop_after_first = true },
graphql = { { 'prettierd', 'prettier' } }, graphql = { 'prettierd', 'prettier', stop_after_first = true },
markdown = { { 'prettierd', 'prettier' } }, markdown = { 'prettierd', 'prettier', stop_after_first = true },
yaml = { { 'prettierd', 'prettier' } }, yaml = { 'prettierd', 'prettier', stop_after_first = true },
}, },
}, },
}, },
{ -- Autocompletion { -- Atocompletion
'hrsh7th/nvim-cmp', 'hrsh7th/nvim-cmp',
event = 'InsertEnter', event = 'InsertEnter',
dependencies = { dependencies = {