Ghostty configuration completion source for blink.cmp
- Lua 87.1%
- Shell 6.1%
- Nix 5.4%
- Just 1.4%
## Problem The consolidated deploy workflow uses one publish job with a dynamic job name. On main pushes, Forgejo rendered the job as `deploy / LuaRocks` instead of `deploy / Nightly`, even though the step-level `github.ref` conditions still selected the correct publish path. ## Solution Use `github.ref` for the job-name expression, matching the step conditions and the runner-provided compatibility context. This keeps the one-file `deploy.yaml` layout while preserving the expected rendered names. Validation: - parsed `.forgejo/workflows/*.yaml` with PyYAML via Nix - `git diff --check` Reviewed-on: #25 |
||
|---|---|---|
| .forgejo | ||
| .github/workflows | ||
| lua | ||
| spec | ||
| .busted | ||
| .editorconfig | ||
| .gitignore | ||
| .luarc.json | ||
| biome.json | ||
| blink-cmp-ghostty-scm-1.rockspec | ||
| flake.lock | ||
| flake.nix | ||
| justfile | ||
| LICENSE | ||
| README.md | ||
| selene.toml | ||
| stylua.toml | ||
| vim.yaml | ||
blink-cmp-ghostty
Ghostty configuration completion source for blink.cmp.
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',
},
},
},
})