Ghostty configuration completion source for blink.cmp
  • Lua 84.4%
  • Shell 8.4%
  • Nix 5.4%
  • Just 1.8%
Find a file
Barrett Ruth 2c74f96787
All checks were successful
quality / Format (push) Successful in 5s
quality / Lint (push) Successful in 5s
quality / Test (push) Successful in 3s
deploy / LuaRocks (nightly) (push) Successful in 44s
docs: update mirror banner wording (#38)
## 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
2026-05-05 21:27:46 +00:00
.forgejo docs: add contributing guide (#36) 2026-05-05 17:20:49 +00:00
.github/workflows ci: redirect GitHub PRs to Forgejo (#16) 2026-05-03 15:58:05 +00:00
doc chore: ignore generated vimdoc tags (#37) 2026-05-05 17:52:02 +00:00
lua perf: async enum file read (#10) 2026-02-22 23:21:54 -05:00
spec perf: async enum file read (#10) 2026-02-22 23:21:54 -05:00
.busted feat: initial release 2026-02-20 16:55:55 -05:00
.editorconfig feat: initial release 2026-02-20 16:55:55 -05:00
.gitignore chore: ignore generated vimdoc tags (#37) 2026-05-05 17:52:02 +00:00
.luarc.json ci: migrate to nix 2026-02-23 18:11:31 -05:00
biome.json chore: replace prettier with biome (#13) 2026-04-25 16:16:57 -04:00
blink-cmp-ghostty-scm-1.rockspec docs: align rockspec license metadata (#32) 2026-05-04 21:29:37 +00:00
CONTRIBUTING.md docs: add contributing guide (#36) 2026-05-05 17:20:49 +00:00
flake.lock docs: add Forgejo help routing (#34) 2026-05-04 23:31:04 +00:00
flake.nix docs: add Forgejo help routing (#34) 2026-05-04 23:31:04 +00:00
justfile docs: add Forgejo help routing (#34) 2026-05-04 23:31:04 +00:00
LICENSE chore: switch license to GPL 2026-05-01 01:03:38 +00:00
README.md docs: update mirror banner wording (#38) 2026-05-05 21:27:46 +00:00
selene.toml ci: migrate to nix 2026-02-23 18:11:31 -05:00
stylua.toml feat: initial release 2026-02-20 16:55:55 -05:00
vim.yaml small fix 2026-03-22 14:28:01 -04:00

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-forgejo for canonical project links.

blink-cmp-ghostty preview

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',
      },
    },
  },
})