Skip to content

Instantly share code, notes, and snippets.

View zawupf's full-sized avatar
🥑

Arnold zawupf

🥑
  • Germany
  • 12:56 (UTC +02:00)
  • X @zawupf
View GitHub Profile
@zawupf
zawupf / Microsoft_PowerShell_profile.ps1
Last active April 2, 2024 07:38
My powershell profile
if ($PSEdition -eq 'Core') {
# Newer cross-platform pwsh
$env:PAGER = 'less.exe'
}
else {
# Older windows only powershell
Set-Alias -Name more -Value less
}
# Fix issue with dotnet SDK 7.0.302
@zawupf
zawupf / .clang-format
Last active March 31, 2023 07:49
formatting clang-format editorconfig prettier
BasedOnStyle: LLVM
ColumnLimit: 80
IndentWidth: 2
AlignAfterOpenBracket: Align
BinPackParameters: false
BinPackArguments: false
ConstructorInitializerAllOnOneLineOrOnePerLine: true
---
Language: Cpp
IndentWidth: 2
@zawupf
zawupf / tsconfig.json
Created March 2, 2018 16:27
tsconfig.json for validation in vscode
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"charset": "utf8",
"checkJs": true,