From 662549b6b017a96682e9d9a98fe6d22aca83cc46 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 7 Oct 2023 11:32:00 +0200 Subject: [PATCH] bat: Add quarto and ino to synatx-enabled Quarto now uses markdown syntax and ino files use C++ syntax highlighting. --- terminal/.config/bat/config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/terminal/.config/bat/config b/terminal/.config/bat/config index c623dbb..6a92c53 100644 --- a/terminal/.config/bat/config +++ b/terminal/.config/bat/config @@ -21,5 +21,6 @@ # Syntax mappings: map a certain filename pattern to a language. # Example 1: use the C++ syntax for Arduino .ino files # Example 2: Use ".gitignore"-style highlighting for ".ignore" files -#--map-syntax "*.ino:C++" #--map-syntax ".ignore:Git Ignore" +--map-syntax "*.ino:C++" +--map-syntax "*.qmd:Markdown"