-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The `.vimrc` requires the `exrc` option to be turned on, and `.editorconfig` requires https://github.com/editorconfig/editorconfig-vim apparently. Closes: #1208 Approved by: cgwalters
- Loading branch information
1 parent
95bfe6b
commit a0588c3
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[*.[ch]] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
indent_brace_style = gnu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
set expandtab | ||
set tabstop=8 | ||
set softtabstop=2 | ||
set shiftwidth=2 | ||
|
||
" Let's try to not go longer than 92 | ||
set textwidth=92 | ||
autocmd BufNewFile,BufRead *.c,*.h set textwidth=92 | ||
|
||
" This is the same as the default minus 0{, which is really annoying otherwise | ||
" with our coding style. | ||
set cinkeys=0},0),:,0#,!^F,o,O,e |