Skip to content

Instantly share code, notes, and snippets.

View lfeigl's full-sized avatar
👨‍💻
Seasonal coding

Luca Feigl lfeigl

👨‍💻
Seasonal coding
  • DB Regio AG
  • Germany
View GitHub Profile
@lfeigl
lfeigl / .editorconfig
Created December 13, 2021 23:50
EditorConfig for 2 spaces indentation + max line length of 100 chars
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
max_line_length = 100
trim_trailing_whitespace = true
@lfeigl
lfeigl / .vimrc
Created November 27, 2020 20:49
Vim config for 2 spaces indentation + auto indentation + syntax highlighting
syntax enable
filetype plugin indent on
set tabstop=2
set shiftwidth=2
set expandtab