all repos

gopher.nvim @ 94250bb

Minimalistic plugin for Go development
1 files changed, 17 insertions(+), 0 deletions(-)
add editorconfig (#36)

Author: Smirnov Oleksandr ss2316544@gmail.com
Committed by: GitHub noreply@github.com
Committed at: 2023-07-17 18:32:24 +0300
Parent: 9d6bc76
A .editorconfig

@@ -0,0 +1,17 @@

+root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace=true +charset = utf-8 +max_line_length = 120 + +[*.{lua,vim}] +max_line_length = 100 +indent_size = 2 + +[*.{md,yml,yaml,toml}] +indent_size = 2