unification of work and personal configs.

The work package, when stowed, makes the proper overrides, as long as
all work stuff lives in ~/work/
This commit is contained in:
Gabe Venberg 2024-02-22 13:30:25 -06:00
parent ce99161959
commit ffefa0fffd
4 changed files with 18 additions and 78 deletions

View file

@ -0,0 +1,3 @@
[user]
email = venberggabe@johndeere.com
name = Gabe Venberg

13
work/work/.clang-format Normal file
View file

@ -0,0 +1,13 @@
---
#this syncronizes with settings used by neovims treesitters so that the lsp formatting and treesitter formatting do not fight eatch other.
PointerAlignment: Left
ColumnLimit: 80
IndentWidth: 4
TabWidth: 4
UseCRLF: false
UseTab: Never
AlignAfterOpenBracket: BlockIndent
AlwaysBreakBeforeMultilineStrings: true
BreakBeforeBraces: Allman
BreakBeforeBinaryOperators: None
...