My Nix Configuration
at main 772 B view raw
1# Editor configuration, see http://editorconfig.org 2root = true 3 4[*] 5end_of_line = lf 6insert_final_newline = true 7trim_trailing_whitespace = true 8charset = utf-8 9indent_style = space 10indent_size = 2 11 12[*.nix] 13end_of_line = lf 14insert_final_newline = true 15trim_trailing_whitespace = true 16charset = utf-8 17indent_style = space 18indent_size = 2 19 20# Ignore diffs/patches 21[*.{diff,patch}] 22end_of_line = unset 23insert_final_newline = unset 24trim_trailing_whitespace = unset 25indent_size = unset 26 27[{.*,secrets}/**] 28end_of_line = unset 29insert_final_newline = unset 30trim_trailing_whitespace = unset 31charset = unset 32indent_style = unset 33indent_size = unset 34 35[*.py] 36indent_size = 4 37 38[*.md] 39max_line_length = off 40trim_trailing_whitespace = false 41 42[*.lua] 43indent_size = 2 44indent_style = space