feat(nvim): replace sshconfig with ssh, tmux, ghostty sources
Problem: blink-cmp-sshconfig required a build-time Python step. The tmux and ghostty sources were not wired in at all. Solution: replace blink-cmp-sshconfig with blink-cmp-ssh and add blink-cmp-tmux and blink-cmp-ghostty, all using local dir providers.
This commit is contained in:
parent
63863a88ba
commit
5b08815316
1 changed files with 17 additions and 5 deletions
|
|
@ -5,7 +5,9 @@ return {
|
|||
'Kaiser-Yang/blink-cmp-git',
|
||||
'folke/lazydev.nvim',
|
||||
'bydlw98/blink-cmp-env',
|
||||
{ 'bydlw98/blink-cmp-sshconfig', build = 'make' },
|
||||
{ 'barrettruth/blink-cmp-ssh', dir = '~/dev/blink-cmp-ssh' },
|
||||
{ 'barrettruth/blink-cmp-tmux', dir = '~/dev/blink-cmp-tmux' },
|
||||
{ 'barrettruth/blink-cmp-ghostty', dir = '~/dev/blink-cmp-ghostty' },
|
||||
},
|
||||
---@module 'blink.cmp'
|
||||
---@type blink.cmp.Config
|
||||
|
|
@ -80,16 +82,26 @@ return {
|
|||
'buffer',
|
||||
'env',
|
||||
'snippets',
|
||||
'sshconfig',
|
||||
'ssh',
|
||||
'tmux',
|
||||
'ghostty',
|
||||
},
|
||||
providers = {
|
||||
git = {
|
||||
module = 'blink-cmp-git',
|
||||
name = 'Git',
|
||||
},
|
||||
sshconfig = {
|
||||
name = 'SshConfig',
|
||||
module = 'blink-cmp-sshconfig',
|
||||
ssh = {
|
||||
name = 'SSH',
|
||||
module = 'blink-cmp-ssh',
|
||||
},
|
||||
tmux = {
|
||||
name = 'Tmux',
|
||||
module = 'blink-cmp-tmux',
|
||||
},
|
||||
ghostty = {
|
||||
name = 'Ghostty',
|
||||
module = 'blink-cmp-ghostty',
|
||||
},
|
||||
conventional_commits = {
|
||||
name = 'Conventional Commits',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue