feat(cfg): migrate indent-blankline to version 3

feat(cfg): replace prettier to prettierd
This commit is contained in:
EGRrqq 2023-09-29 01:31:41 -05:00
parent b5e14de307
commit 2fcc4d1cab
2 changed files with 3 additions and 2 deletions

View File

@ -173,6 +173,7 @@ require('lazy').setup({
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
main = "ibl",
opts = {
char = '',
show_trailing_blankline_indent = false,

View File

@ -6,7 +6,7 @@ return {
local prettier = require("prettier")
prettier.setup({
bin = 'prettier', -- or `'prettierd'` (v0.23.3+)
bin = 'prettierd',
filetypes = {
"css",
"graphql",
@ -35,7 +35,7 @@ return {
-- return false to skip running prettier
return true
end,
timeout = 5000,
timeout = 1000,
}
})