1
0
forked from extern/nix-config
donovanglover-nix-config/editorconfig/.editorconfig
Donovan Glover d8181108e4
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.
2023-03-19 14:12:17 -04:00

28 lines
444 B
INI

root = true
# Use 2 spaces for indentation by default
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
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
indent_size = 4
[*.html]
indent_style = tab
indent_size = 4
[*.go]
indent_style = tab
indent_size = 4