# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Set default charset
charset = utf-8

# 4 space indentationC
indent_style = space
indent_size = 4

# Trim trailing whitespace
trim_trailing_whitespace = true

# Equivalent to vim.opt.number = true (not directly supported in EditorConfig)
# You might need to configure this in your editor separately

# Equivalent to vim.opt.mouse = "a" (not directly supported in EditorConfig)
# You might need to configure this in your editor separately

# Equivalent to vim.opt.expandtab = true
indent_style = space

# Equivalent to vim.opt.tabstop = 4 and vim.opt.shiftwidth = 4
indent_size = 4

# Equivalent to vim.opt.softtabstop = 4 (not directly supported in EditorConfig)
# This is typically handled by indent_size in most editors
