Change back to a working config #1
@@ -62,7 +62,8 @@ vim.pack.add({
|
|||||||
{ src = "https://github.com/coder/claudecode.nvim" },
|
{ src = "https://github.com/coder/claudecode.nvim" },
|
||||||
{ src = "https://github.com/yetone/avante.nvim" },
|
{ src = "https://github.com/yetone/avante.nvim" },
|
||||||
{ src = "https://github.com/alaviss/nim.nvim" },
|
{ src = "https://github.com/alaviss/nim.nvim" },
|
||||||
{ src = "https://github.com/glebzat/arduino-nvim" },
|
{ src = "https://github.com/yuukiflow/Arduino-Nvim" },
|
||||||
|
-- { src = "https://github.com/glebzat/arduino-nvim" },
|
||||||
})
|
})
|
||||||
|
|
||||||
if host == "xps13" then
|
if host == "xps13" then
|
||||||
@@ -176,7 +177,16 @@ require('avante').setup({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
require('arduino-nvim').setup({
|
require("Arduino-Nvim.lsp").setup({})
|
||||||
default_fqbn = "esp32:esp32:esp32",
|
-- TODO: Fix keymap conflict with Claude
|
||||||
filetypes = {"arduino"}
|
vim.api.nvim_create_autocmd("FileType", {
|
||||||
|
pattern = "arduino",
|
||||||
|
callback = function()
|
||||||
|
require("Arduino-Nvim")
|
||||||
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- require('arduino-nvim').setup({
|
||||||
|
-- default_fqbn = "esp32:esp32:esp32",
|
||||||
|
-- filetypes = {"arduino"}
|
||||||
|
-- })
|
||||||
|
|||||||
Reference in New Issue
Block a user