mirror of
https://github.com/agresdominik/dotfiles.git
synced 2026-04-21 18:05:50 +00:00
10 lines
224 B
Bash
Executable File
10 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
cd "$HOME/documents" || exit 1
|
|
|
|
fd --type f . |
|
|
fzf \
|
|
--scheme=path \
|
|
--prompt='documents> ' \
|
|
--preview 'bat --style=numbers --color=always --line-range :300 {}' \
|
|
--bind 'enter:become(nvim {})'
|