feat(vim): added neoformat plugin to configuration

I have added the neoformat plugin to the list of plugins in my Neovim
configuration file. This plugin provides a powerful formatting tool that
can be used to format code and files in various programming languages.
It also supports multiple formatting options, making it easy to choose
the right settings for your specific needs.

I have been using this plugin for a while now, I must have missed it
when migrating to configz
This commit is contained in:
Ade Attwood 2023-12-12 09:26:09 +00:00
parent a7774f9576
commit 76842a9e3f

View file

@ -49,6 +49,7 @@ local start_plugins = {
["copilot"] = { url = "https://github.com/zbirenbaum/copilot.lua.git" }, ["copilot"] = { url = "https://github.com/zbirenbaum/copilot.lua.git" },
["copilot-cmp"] = { url = "https://github.com/zbirenbaum/copilot-cmp.git" }, ["copilot-cmp"] = { url = "https://github.com/zbirenbaum/copilot-cmp.git" },
["oil.nvim"] = { url = "https://github.com/stevearc/oil.nvim.git" }, ["oil.nvim"] = { url = "https://github.com/stevearc/oil.nvim.git" },
["neoformat"] = { url = "https://github.com/sbdchd/neoformat" },
} }
local opt_plugins = { local opt_plugins = {