A minimal, blazing fast SSHFS integration for the Yazi terminal fileβmanager.
Mount any host from your ~/.ssh/config, or add custom hosts, and browse remote files as if they were local. Jump between your local machine and remote mounts with a single keystroke.
yazi-sshfs-demo.mp4
Note
Linux/Mac Only (for now!)
This plugin currently only supports Linux/Mac. If you're interested in helping add support for other platforms, check out the open issues:
If you have some Lua experience (or want to learn), Iβd be happy to walk you through integration and testing. Pull requests are welcome!
- Works anywhere you have SSH access. Nothing extra is needed β only portβ―22.
- Treat remote files like local ones. Run
vim,nvim,sed, preview images / videos directly, etc. - Userβspace, unprivileged. No root required; mounts live under your chosen mount directory or the default (
~/mnt). - Bandwidthβfriendly. SSH compression, connection timeout, and reconnect options are enabled by default.
- Quick Loading and Operations. Load / edit files quickly without any lag and use all the tools from your local machine.
Perfect for tweaking configs, deploying sites, inspecting logs, or just grabbing / editing / deleting files remotely.
This plugin serves as a wrapper for the sshfs command, integrating it seamlessly with Yazi. It automatically reads hosts from your ~/.ssh/config file. Additionally, it maintains a separate list of custom hosts in ~/.config/yazi/sshfs.list.
The core default sshfs command used is as follows (you may tweak these options and the mount directory with your setup settings):
sshfs user@host: ~/mnt/alias -o reconnect,compression=yes,ServerAliveInterval=15,ServerAliveCountMax=3- Oneβkey mounting β remembers your SSH hosts and reads from your
ssh_config. - Jump/Return workflow β quickly copy files between local & remote.
- Uses
sshfsdirectly. - Mountβpoints live under your chosen mount directory (default:
~/mnt), keeping them isolated from your regular file hierarchy.
| Software | Minimum | Notes |
|---|---|---|
| Yazi | >=25.5.31 |
untested on 25.6+ |
| sshfs | any | sudo dnf/apt/pacman install sshfs |
| fusermount | from FUSE | Usually pre-installed on Linux |
| SSH config | working hosts | Hosts come from ~/.ssh/config |
Note
For Mac users, see the macOS setup steps below.
To use sshfs.yazi on macOS, follow these steps:
-
Install macFUSE Download and install macFUSE from the official site: https://macfuse.github.io/
-
Install SSHFS for macFUSE Use the official SSHFS releases compatible with macFUSE: https://github.com/macfuse/macfuse/wiki/File-Systems-%E2%80%90-SSHFS
-
Install Yazi On macOS via Homebrew:
brew install yazi
Install the plugin via Yazi's package manager:
ya pkg add uhs-robert/sshfsThen add the following to your ~/.config/yazi/init.lua to enable the plugin with default settings:
require("sshfs"):setup()Add this to your ~/.config/yazi/keymap.toml for a conflict-free approach that works well with other plugins:
[mgr]
prepend_keymap = [
{ on = ["M","s"], run = "plugin sshfs -- menu", desc = "Open SSHFS options" },
]The M s menu provides access to all SSHFS functions:
mβ Mount & jumpuβ Unmountjβ Jump to mountaβ Add hostrβ Remove hosthβ Go to mount homecβ Open ~/.ssh/config
Tip
sshfs.yazi uses the array form for keymaps.
You must pick only one style per file; mixing with [[mgr.prepend_keymap]] will fail.
Also note: some plugins (e.g., mount.yazi) bind a bare key like on = "M",
which blocks all M <key> chords (including M s). Change those to chords
(e.g. ["M","m"]) or choose a different prefix.
If you prefer direct keybinds, you may also set your own using our API. Here are the available options from the default preset:
[mgr]
prepend_keymap = [
{ on = ["M","m"], run = "plugin sshfs -- mount --jump", desc = "Mount & jump" },
{ on = ["M","u"], run = "plugin sshfs -- unmount", desc = "Unmount SSHFS" },
{ on = ["M","j"], run = "plugin sshfs -- jump", desc = "Jump to mount" },
{ on = ["M","a"], run = "plugin sshfs -- add", desc = "Add SSH host" },
{ on = ["M","r"], run = "plugin sshfs -- remove", desc = "Remove SSH host" },
{ on = ["M","h"], run = "plugin sshfs -- home", desc = "Go to mount home" },
{ on = ["M","c"], run = "cd ~/.ssh/", desc = "Go to ssh config" },
]Important
If you choose to use direct keybinds, you will be responsible for managing and handling any conflicts yourself.
- SSHFS Menu (
M s): Opens an interactive menu with all SSHFS options- Mount (
M m): Choose a host and select a remote directory (~or/). This works for hosts from your~/.ssh/configand any custom hosts you've added. - Unmount (
M u): Choose an active mount to unmount it. - Jump to mount (
M j): Jump to any active mount from another tab or location - Add host (
M a): Enter a custom host (user@host) for Yazi-only use (useful for quick testing or temp setups). For persistent, system-wide access, updating your.ssh/configis recommended. - Remove host (
M r): Select and remove any Yazi-only hosts that you've added. - Jump to mount home directory (
M h): Jump to the mount home directory.
- Mount (
- If key authentication fails, the plugin will prompt for a password up to 3 times before giving up.
- SSH keys vastly speed up repeated mounts (no password prompt), leverage your
ssh_configrather than manually adding hosts to make this as easy as possible.
Warning
This section is intended for power users only. Skip this if you only want to run the default settings. Keep reading for advanced SSHFS customization and plugin configuration options.
To customize plugin behavior, you may pass a config table to setup() (default settings are displayed for optional configuration):
require("sshfs"):setup({
-- Mount directory
mount_dir = os.getenv("HOME") .. "/mnt",
-- Password authentication attempts before giving up
password_attempts = 3,
-- Default mount point: Go to home, root, or always ask where to go
default_mount_point = "auto" -- home | root | auto
-- SSHFS mount options (array of strings)
-- These options are passed directly to the sshfs command
sshfs_options = {
"reconnect", -- Auto-reconnect on connection loss
"ConnectTimeout=5", -- Connection timeout in seconds
"compression=yes", -- Enable compression
"ServerAliveInterval=15", -- Keep-alive interval (15s Γ 3 = 45s timeout)
"ServerAliveCountMax=3", -- Keep-alive message count
-- "dir_cache=yes", -- Enable directory caching (default: yes)
-- "dcache_timeout=300", -- Cache timeout in seconds
-- "dcache_max_size=10000", -- Max cache size
-- "allow_other", -- Allow other users to access mount
-- "uid=1000,gid=1000", -- Set file ownership
-- "follow_symlinks", -- Follow symbolic links
},
-- Picker UI settings
ui = {
-- Maximum number of items to show in the menu picker.
-- If the list exceeds this number, a different picker (like fzf) is used.
menu_max = 15, -- Recommended: 10β20. Max: 36.
-- Picker strategy:
-- "auto": uses menu if items <= menu_max, otherwise fzf (if available) or a filterable list
-- "fzf": always use fzf if available, otherwise fallback to a filterable list
picker = "auto", -- "auto" | "fzf"
},
})All sshfs options are specified in the sshfs_options array. You can learn more about sshfs mount options here.
In addition, sshfs also supports a variety of options from sftp and ssh_config.
Here are some common sshfs option combinations:
-- Minimal reliable setup
require("sshfs"):setup({
sshfs_options = {
"reconnect",
"ServerAliveInterval=15",
"ServerAliveCountMax=3",
},
})
-- Performance optimized
require("sshfs"):setup({
sshfs_options = {
"reconnect",
"compression=yes",
"cache_timeout=300",
"ConnectTimeout=10",
"dir_cache=yes",
"dcache_timeout=600",
},
})
-- Multi-user access
require("sshfs"):setup({
sshfs_options = {
"reconnect",
"allow_other",
"uid=1000,gid=1000",
"umask=022",
"ServerAliveInterval=30",
},
})