SSH configuration completion source for blink.cmp
- Lua 86.4%
- Shell 7.3%
- Nix 4.7%
- Just 1.6%
## Summary - update the README GitHub mirror banner to the active-development wording - keep the Forgejo link repo-specific and preserve any existing canonical-link note ## Checks - git diff --check Reviewed-on: https://git.barrettruth.com/barrettruth/blink-cmp-ssh/pulls/29 |
||
|---|---|---|
| .forgejo | ||
| .github/workflows | ||
| doc | ||
| lua | ||
| spec | ||
| .busted | ||
| .editorconfig | ||
| .gitignore | ||
| .luarc.json | ||
| biome.json | ||
| blink-cmp-ssh-scm-1.rockspec | ||
| CONTRIBUTING.md | ||
| flake.lock | ||
| flake.nix | ||
| justfile | ||
| LICENSE | ||
| README.md | ||
| selene.toml | ||
| stylua.toml | ||
| vim.yaml | ||
blink-cmp-ssh
SSH configuration completion source for blink.cmp.
Note
Due to GitHub's historic unreliability, active development is hosted on Forgejo. GitHub is maintained as a read-only mirror. See
:help blink-cmp-ssh-forgejofor canonical project links.
Features
- Completes
ssh_configkeywords with man page documentation - Provides enum values for keywords with known option sets (ciphers, MACs, key exchange algorithms, etc.)
- Keyword and enum data fetched asynchronously at runtime via
man ssh_configandssh -Q
Requirements
- Neovim 0.10.0+
- blink.cmp
sshandmanexecutables
Installation
With vim.pack (Neovim 0.12+):
vim.pack.add({
'https://git.barrettruth.com/barrettruth/blink-cmp-ssh',
})
Or via luarocks:
luarocks install blink-cmp-ssh
Configure blink.cmp:
require('blink.cmp').setup({
sources = {
default = { 'ssh' },
providers = {
ssh = {
name = 'SSH',
module = 'blink-cmp-ssh',
},
},
},
})