bkmr 6.4.1

A Unified CLI Tool for Bookmark, Snippet, and Knowledge Management
Documentation
# src/default_config.toml
# db_url = "$HOME/.config/bkmr/bkmr.db"

# Available FZF options:
#   --height 50%     Set the height of the finder
#   --reverse        Display results in reverse order
#   --show-tags      Show tags in the display
#   --no-url         Hide URLs in the display
#   --no-action      Hide default actions in the display
#   --no-file-info   Hide file info (path and mtime) for file-imported bookmarks
[fzf_opts]
height = "50%"
reverse = false
show_tags = false
no_url = false
show_action = true
show_file_info = true

# Shell script execution options
[shell_opts]
# Whether to use interactive mode for shell script execution (default: true)
# When true, shell scripts are presented for editing before execution
# When false, shell scripts are executed directly without interaction
interactive = true

# Base paths for file imports - use these to store portable relative paths
# When importing files with --base-path option, paths are stored as variables
# Environment variable expansion is supported (e.g., $HOME)
[base_paths]
# Example configurations:
# SCRIPTS_HOME = "$HOME/scripts"
# DOCS_HOME = "$HOME/documents"
# WORK_SCRIPTS = "/work/automation/scripts"
# PROJECT_NOTES = "$HOME/projects/notes"