mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
16 lines
356 B
Lua
16 lines
356 B
Lua
return {
|
|
{
|
|
"stevearc/conform.nvim",
|
|
keys = {
|
|
{
|
|
"<leader>cF",
|
|
function()
|
|
require("conform").format({ formatters = { "injected" } })
|
|
end,
|
|
mode = { "n", "v" },
|
|
desc = "Format Injected Langs",
|
|
},
|
|
},
|
|
},
|
|
}
|