dotfiles/home/.config/nvim/lua/plugins/neoformat.lua

11 lines
229 B
Lua
Raw Normal View History

-- Formatter plugin
return {
"sbdchd/neoformat",
config = function()
local wk = require("which-key")
wk.register({
f = { "<cmd>Neoformat<CR>", "Format with Neoformat" },
}, { prefix = "<leader>" })
end,
}