This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Managing notes with fzf (https://github.com/junegunn/fzf) | |
| # - CTRL-L: List note files in descending order by their modified time | |
| # - CTRL-F: Search file contents | |
| # | |
| # Configuration: | |
| # - $NOTE_DIR: Directory where note files are located | |
| # - $NOTE_EXT: Note file extension (default: txt) |