From d8181108e45280adc51228169e1e0d01d8a4b129 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Sun, 19 Mar 2023 14:07:08 -0400 Subject: [PATCH] editorconfig: Indent markdown with tabs Since I now use Logseq for personal knowledge management, it's easier to make all markdown files use tabs by default. --- editorconfig/.editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editorconfig/.editorconfig b/editorconfig/.editorconfig index 99f68e97..5193f077 100644 --- a/editorconfig/.editorconfig +++ b/editorconfig/.editorconfig @@ -9,6 +9,10 @@ indent_size = 2 indent_style = space trim_trailing_whitespace = true +# Use tab indentation for Logseq +[*.md] +indent_style = tab + # Use tab indentation (with size 4) for the following files [Makefile] indent_style = tab