15 lines
406 B
Lua
15 lines
406 B
Lua
return {
|
|
"amitds1997/remote-nvim.nvim",
|
|
version = "*", -- Pin to GitHub releases for stability
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-telescope/telescope.nvim",
|
|
"MunifTanjim/nui.nvim",
|
|
},
|
|
config = function()
|
|
require("remote-nvim").setup({
|
|
ssh_config_file_paths = { vim.fn.expand("$HOME/.ssh/config") },
|
|
})
|
|
end
|
|
}
|