From d81ff48af0808ab0e02800ee598c0fa2c9cb86bd Mon Sep 17 00:00:00 2001 From: th3r00t Date: Thu, 18 Sep 2025 21:28:09 -0400 Subject: [PATCH] Added arduino-nvim --- lua/plugins.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/plugins.lua b/lua/plugins.lua index a8572c1..5842486 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -62,6 +62,7 @@ vim.pack.add({ { src = "https://github.com/coder/claudecode.nvim" }, { src = "https://github.com/yetone/avante.nvim" }, { src = "https://github.com/alaviss/nim.nvim" }, + { src = "https://github.com/glebzat/arduino-nvim" }, }) if host == "xps13" then @@ -175,3 +176,7 @@ require('avante').setup({ } } }) +require('arduino-nvim').setup({ + default_fqbn = "esp32:esp32:esp32", + filetypes = {"arduino"} +})