Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs/community/channels-unix.md
Original file line number Diff line number Diff line change
Expand Up @@ -2979,6 +2979,44 @@ frecency = false
```


---

### *nvim-config-files*

Search through Neovim configuration files

**Requirements:** `fd`, `nvim`

**Code:** *nvim-config-files.toml*

```toml
[metadata]
name = "nvim-config-files"
description = "Search through Neovim configuration files"
requirements = [ "fd", "nvim",]

[source]
command = [ "fd . ~/.config/nvim --type f",]
display = "{regex_extract:.*\\.config/nvim/(.*):1}"

[preview]
command = "bat -n --color=always '{}'"

[keybindings]
enter = "actions:edit"

[preview.env]
BAT_THEME = "ansi"

[actions.edit]
description = "Opens the selected entries with the default editor (falls back to vim)"
command = "${EDITOR:-vim} '{}'"
shell = "bash"
mode = "execute"

```


---

### *opencode-sessions*
Expand Down