From 7a051580af4e79cb8a316b4e5e459017448239f5 Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Tue, 26 Mar 2024 08:42:25 +0100 Subject: [PATCH] +nvim sshfs --- nvim/lua/custom/plugins/remote-sshfs.lua | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 nvim/lua/custom/plugins/remote-sshfs.lua diff --git a/nvim/lua/custom/plugins/remote-sshfs.lua b/nvim/lua/custom/plugins/remote-sshfs.lua new file mode 100644 index 0000000..b9de333 --- /dev/null +++ b/nvim/lua/custom/plugins/remote-sshfs.lua @@ -0,0 +1,8 @@ +return { + 'nosduco/remote-sshfs.nvim', + config = function() + require('remote-sshfs').setup { + -- Configuration here, or leave empty to use defaults + } + end, +}