From 6fc7858788fb7063ba3822b71c79f7d128af09e7 Mon Sep 17 00:00:00 2001 From: scbj Date: Thu, 23 Jan 2025 08:58:02 +0100 Subject: [PATCH] added example configuration file --- README.md | 2 ++ navigate.toml | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 navigate.toml diff --git a/README.md b/README.md index d0b3642..e3b156c 100644 --- a/README.md +++ b/README.md @@ -63,3 +63,5 @@ Style settings accept styles and one color in the following formats: ***NOTE**: The styles and colors are applied as ansi escape sequences and most terminals do not support all options.* +See [navigate.toml](./navigate.toml) for an example configuration file. + diff --git a/navigate.toml b/navigate.toml new file mode 100644 index 0000000..befd0e2 --- /dev/null +++ b/navigate.toml @@ -0,0 +1,21 @@ +[general] +show_stack_on_push = false +show_stack_on_pop = false +show_books_on_bookmark = false + +[format] +stack_separator = " - " +bookmarks_separator = " - " +align_separators = true + +[styles] +warning_style = "yellow, italic" +error_style = "red, bold" +stack_number_style = "default" +stack_separator_style = "cyan" +stack_path_style = "italic" +stack_punct_style = "#805820" +bookmarks_name_style = "bold" +bookmarks_seperator_style = "cyan" +bookmarks_path_style = "italic" +bookmarks_punct_style = "bold, #805820"