Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2

[*.{md,mdx,rst}]
trim_trailing_whitespace = false

[Makefile*]
indent_style = tab
indent_size = 4

[*.{py,rb}]
indent_size = 4

[*.{go,java}]
indent_style = tab
indent_size = 4
2 changes: 2 additions & 0 deletions .zunit.zsh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
# vim: ft=zsh sw=2 ts=2 et
# ZUnit configuration
ZUNIT_TESTS_DIR='tests'
ZUNIT_OUTPUT_DIR='tests/_output'
Expand Down
2 changes: 2 additions & 0 deletions lib/color.zsh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
# vim: ft=zsh sw=2 ts=2 et
# Source: https://github.com/molovo/color
# License: MIT — Copyright (c) 2015 Joe Letchford
# Maintained by z-shell/src — https://github.com/z-shell/src
Expand Down
2 changes: 2 additions & 0 deletions lib/revolver.zsh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env zsh
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
# vim: ft=zsh sw=2 ts=2 et
# Source: https://github.com/molovo/revolver
# License: MIT — Copyright (c) 2016 Joe Letchford
# Maintained by z-shell/src — https://github.com/z-shell/src
Expand Down
Loading