diff --git a/ansible/roles/base/files/gitconfig_home b/ansible/roles/base/files/gitconfig_home index 7270acf..6d7c1be 100644 --- a/ansible/roles/base/files/gitconfig_home +++ b/ansible/roles/base/files/gitconfig_home @@ -8,6 +8,7 @@ lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit bh = log --oneline --branches=* --remotes=* --graph --decorate amend = commit --amend --no-edit + authorcount = shortlog --summary --numbered --all --no-merges [core] excludesfile = ~/.gitignore_global [commit] diff --git a/ansible/roles/base/files/gitconfig_work b/ansible/roles/base/files/gitconfig_work index 2985d4c..7ab3742 100644 --- a/ansible/roles/base/files/gitconfig_work +++ b/ansible/roles/base/files/gitconfig_work @@ -8,6 +8,7 @@ lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit bh = log --oneline --branches=* --remotes=* --graph --decorate amend = commit --amend --no-edit + authorcount = shortlog --summary --numbered --all --no-merges [core] excludesfile = ~/.gitignore_global [commit] diff --git a/ansible/roles/framework_laptop/files/screen_brightness_tmpfiles.conf b/ansible/roles/framework_laptop/files/screen_brightness_tmpfiles.conf index 254f5b2..463793d 100644 --- a/ansible/roles/framework_laptop/files/screen_brightness_tmpfiles.conf +++ b/ansible/roles/framework_laptop/files/screen_brightness_tmpfiles.conf @@ -1,2 +1,2 @@ # Set screen brightness. Ever since enabling adaptive brightness management, my brightness ends up sinking lower on re-boots (I suspect it is saving the actual brightness rather than the set brightness). This forces the brightness back to the level I prefer. -w- /sys/class/backlight/amdgpu_bl0/brightness - - - - 85 +w- /sys/class/backlight/amdgpu_bl0/brightness - - - - 21845 diff --git a/ansible/roles/kanshi/files/config_kanshi b/ansible/roles/kanshi/files/config_kanshi index 51e1565..ec9a2b3 100644 --- a/ansible/roles/kanshi/files/config_kanshi +++ b/ansible/roles/kanshi/files/config_kanshi @@ -2,6 +2,10 @@ profile office { output eDP-1 disable output "Dell Inc. DELL C2722DE 6PH6T83" enable } +profile office2 { + output eDP-1 disable + output "BOE 0x0BCA Unknown" enable +} profile docked { output eDP-1 disable output "Dell Inc. DELL U3014 P1V6N35M329L" enable diff --git a/ansible/roles/vscode/files/settings.json b/ansible/roles/vscode/files/settings.json index 94d19ba..9bfe87b 100644 --- a/ansible/roles/vscode/files/settings.json +++ b/ansible/roles/vscode/files/settings.json @@ -36,11 +36,20 @@ "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true }, + "[typescriptreact]": { + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true + }, + "javascript.autoClosingTags": false, + "typescript.autoClosingTags": false, "black-formatter.importStrategy": "fromEnvironment", "workbench.statusBar.visible": false, "git.openRepositoryInParentFolders": "never", "files.autoSave": "afterDelay", "editor.rulers": [ 100 - ] + ], + "workbench.secondarySideBar.defaultVisibility": "hidden", + "editor.autoClosingBrackets": "never", + "editor.autoSurround": "never" }