Skip to content

Instantly share code, notes, and snippets.

@atsushifx
Last active May 2, 2024 03:07
Show Gist options
  • Save atsushifx/fbc86f1649ed1d5778812ea21bf73804 to your computer and use it in GitHub Desktop.
Save atsushifx/fbc86f1649ed1d5778812ea21bf73804 to your computer and use it in GitHub Desktop.
racket programming settings
# EditorConfig is awesome: https://EditorConfig.org
# @(#) ediitorconfig for racket programming wirh VS Code
#
# @version 1.0.0
# @date 2024-05-02
# @author Furukawa Atsushi <atsushifx@aglabo.com>
# @license MIT
#
# @description<<
# editor config for racket programming
#
#
#<<
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# default character-set
charset = utf-8
# indent style
indent_size = tab
indent_style = tab
tab_width=4
### Programming Language
# racket
[**.rkt]
indent_style = space
indent_size = tab
tab_width = 2
### Settings Files
# json, yml
[**.{json, yml}]
indent_style = tab
indent_size = tab
tab_width = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment