mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
13 lines
424 B
Lua
13 lines
424 B
Lua
-- Remote development in Neovim 🔥
|
|
-- https://github.com/amitds1997/remote-nvim.nvim?tab=readme-ov-file
|
|
return {
|
|
"amitds1997/remote-nvim.nvim",
|
|
version = "*", -- Pin to GitHub releases
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim", -- For standard functions
|
|
"MunifTanjim/nui.nvim", -- To build the plugin UI
|
|
"nvim-telescope/telescope.nvim", -- For picking b/w different remote methods
|
|
},
|
|
config = true,
|
|
}
|