--[ -- This Neovim plugin is a simple Neovim plugin for remotely editing files. -- -- It uses SCP and assumes key-based SSH authentication. It's designed for people who do not use Netw --] return { "nat-418/scamp.nvim", enabled = true, config = function() require("scamp").setup({ -- see man(5) ssh_config for more control options scp_options = { "ConnectTimeout=5", }, }) end, }