Skip to content

Commit

Permalink
fix: conform settings
Browse files Browse the repository at this point in the history
  • Loading branch information
hjdivad committed Apr 10, 2024
1 parent 214a60d commit 578de0c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/nvim/config/lua/plugins/formatting.lua
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---@type LazySpec
---@type LazySpec[]
return {
-- see https://www.lazyvim.org/plugins/formatting
{
"stevearc/conform.nvim",
opt = {
formatters_by_ft = {
markdown = { "prettier" },
json = { "fixjson" },
lua = { "stylua" },
rust = { "rustfmt" },
python = {},
},
opts = {
formatters_by_ft = {
markdown = { { "prettierd", "prettier" } },
json = { "fixjson" },
lua = { "stylua" },
rust = { "rustfmt" },
python = {},
},
},
},
}

0 comments on commit 578de0c

Please sign in to comment.