-
Notifications
You must be signed in to change notification settings - Fork 2
42Formatter.md
Bonsthie edited this page Dec 30, 2024
·
1 revision
This guide explains how to enable the C Formatter plugin for Neovim.
You can enable the plugin by creating a configuration file in the lua/custom/
folder.
- Navigate to
lua/custom/
. - Create a file named
42formatter.lua
. - Set the necessary options to enable the plugin.
local M = {}
function M.modify_opts(opts)
opts.enable = true -- Enable the plugin
return opts
end
return M
You can now format your code using the :CFormater
command