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"} +})