Fix conform issue and sync fork
This commit is contained in:
parent
4c35ad40ed
commit
de80b447c4
24
init.lua
24
init.lua
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue