From 980004e908c35875ec0b3dbaeb425db268e1c321 Mon Sep 17 00:00:00 2001 From: iain barnett Date: Thu, 14 Jul 2022 16:16:06 +0900 Subject: [PATCH] Added barebones config template with the odd alternative commented out. --- docs/config.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docs/config.toml diff --git a/docs/config.toml b/docs/config.toml new file mode 100644 index 000000000..63dd4977f --- /dev/null +++ b/docs/config.toml @@ -0,0 +1,15 @@ +# Basic template of config settings + +# Don't forget to change these to your own details! +user.name = "YOUR NAME" +user.email = "YOUR_EMAIL@example.com" + +ui.color = "auto" # the default +# ui.color = never # no color + +ui.editor = "pico" # the default +# ui.editor = "vim" + + +diff-editor = "meld" # default, requires meld to be installed +# diff-editor = "vimdiff" \ No newline at end of file