configure remote sshfs with vim pack

This commit is contained in:
Nick Burt 2026-07-01 13:47:17 -05:00
parent ce1ed67103
commit c7972483e9
2 changed files with 10 additions and 5 deletions

View File

@ -16,6 +16,8 @@ A manual smoketest checklist to ensure features are working:
- `<leader><C-t>` should open a terminal - `<leader><C-t>` should open a terminal
- [ ] VimTmuxNavigator - [ ] VimTmuxNavigator
- Should be able to navigate between nvim and tmux panes using `<C-j>`, `<C-k>`, `<C-h>`, `<C-l>` for each respective direction - Should be able to navigate between nvim and tmux panes using `<C-j>`, `<C-k>`, `<C-h>`, `<C-l>` for each respective direction
- [ ] Remote SSHFS
- Should be able to remotely access a directory using the `:RemoteSSHFSConnect` command
- [ ] Guttermarks - [ ] Guttermarks
- Marks (place a mark with `m<char>`) should be displayed in the gutter by their character - Marks (place a mark with `m<char>`) should be displayed in the gutter by their character

View File

@ -1,8 +1,11 @@
return { -- return {
'nosduco/remote-sshfs.nvim', -- 'nosduco/remote-sshfs.nvim',
dependencies = { 'nvim-telescope/telescope.nvim', 'nvim-lua/plenary.nvim' }, -- dependencies = { 'nvim-telescope/telescope.nvim', 'nvim-lua/plenary.nvim' },
opts = {}, -- opts = {},
} -- }
vim.pack.add { "https://github.com/nosduco/remote-sshfs.nvim"}
require('remote-sshfs').setup()
-- Usage: :RemoteSSHFSConnect <user>@<ipaddress>:/path/to/file -- Usage: :RemoteSSHFSConnect <user>@<ipaddress>:/path/to/file
-- Sometimes you have to force close, and that causes permission failed on reconnect. -- Sometimes you have to force close, and that causes permission failed on reconnect.