From 76842a9e3fe1db002bdcc6e931edb2913dea6176 Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Tue, 12 Dec 2023 09:26:09 +0000 Subject: [PATCH] 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 --- modules/nvim.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nvim.lua b/modules/nvim.lua index ab801ac..8d52ae9 100644 --- a/modules/nvim.lua +++ b/modules/nvim.lua @@ -49,6 +49,7 @@ local start_plugins = { ["copilot"] = { url = "https://github.com/zbirenbaum/copilot.lua.git" }, ["copilot-cmp"] = { url = "https://github.com/zbirenbaum/copilot-cmp.git" }, ["oil.nvim"] = { url = "https://github.com/stevearc/oil.nvim.git" }, + ["neoformat"] = { url = "https://github.com/sbdchd/neoformat" }, } local opt_plugins = {