changed coding style to conform with workplace coding style.

This commit is contained in:
Gabe Venberg 2023-09-13 09:07:27 -05:00
parent a29e8d657b
commit d2916b44db
2 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@ ColumnLimit: 120
IndentWidth: 4
TabWidth: 4
UseCRLF: false
UseTab: AlignWithSpaces
UseTab: Never
AlignAfterOpenBracket: BlockIndent
AlwaysBreakBeforeMultilineStrings: true
BreakBeforeBraces: Attach

View file

@ -58,8 +58,8 @@ opt.autoindent = true
opt.smartindent = true
opt.smarttab = true
--space based tabs.
-- opt.softtabstop=-1 --negative value inherrits shiftwidth.
-- opt.expandtab=true
opt.softtabstop=-1 --negative value inherrits shiftwidth.
opt.expandtab=true
--highlight search results as you type.
opt.hlsearch = true
opt.incsearch = true