configure remote sshfs with vim pack
This commit is contained in:
parent
ce1ed67103
commit
c7972483e9
|
|
@ -16,6 +16,8 @@ A manual smoketest checklist to ensure features are working:
|
|||
- `<leader><C-t>` should open a terminal
|
||||
- [ ] VimTmuxNavigator
|
||||
- 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
|
||||
- Marks (place a mark with `m<char>`) should be displayed in the gutter by their character
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,11 @@
|
|||
return {
|
||||
'nosduco/remote-sshfs.nvim',
|
||||
dependencies = { 'nvim-telescope/telescope.nvim', 'nvim-lua/plenary.nvim' },
|
||||
opts = {},
|
||||
}
|
||||
-- return {
|
||||
-- 'nosduco/remote-sshfs.nvim',
|
||||
-- dependencies = { 'nvim-telescope/telescope.nvim', 'nvim-lua/plenary.nvim' },
|
||||
-- opts = {},
|
||||
-- }
|
||||
|
||||
vim.pack.add { "https://github.com/nosduco/remote-sshfs.nvim"}
|
||||
require('remote-sshfs').setup()
|
||||
|
||||
-- Usage: :RemoteSSHFSConnect <user>@<ipaddress>:/path/to/file
|
||||
-- Sometimes you have to force close, and that causes permission failed on reconnect.
|
||||
|
|
|
|||
Loading…
Reference in New Issue