Ghostty configuration completion source for blink.cmp
- Lua 84.4%
- Shell 8.4%
- Nix 5.4%
- Just 1.8%
## 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-ghostty/pulls/38 |
||
|---|---|---|
| .forgejo | ||
| .github/workflows | ||
| doc | ||
| lua | ||
| spec | ||
| .busted | ||
| .editorconfig | ||
| .gitignore | ||
| .luarc.json | ||
| biome.json | ||
| blink-cmp-ghostty-scm-1.rockspec | ||
| CONTRIBUTING.md | ||
| flake.lock | ||
| flake.nix | ||
| justfile | ||
| LICENSE | ||
| README.md | ||
| selene.toml | ||
| stylua.toml | ||
| vim.yaml | ||
blink-cmp-ghostty
Ghostty 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-ghostty-forgejofor canonical project links.
Features
- Completes Ghostty configuration keys with documentation
- Provides enum values for configuration options
- Documentation extracted from
ghostty +show-config --docs
Requirements
Installation
With vim.pack (Neovim 0.12+):
vim.pack.add({
'https://git.barrettruth.com/barrettruth/blink-cmp-ghostty',
})
Or via luarocks:
luarocks install blink-cmp-ghostty
Configure blink.cmp:
require('blink.cmp').setup({
sources = {
default = { 'ghostty' },
providers = {
ghostty = {
name = 'Ghostty',
module = 'blink-cmp-ghostty',
},
},
},
})