This file contains hidden or 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
| [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityProtocolType]::Tls12 | |
| $OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding | |
| # https://github.com/devblackops/Terminal-Icons | |
| Import-Module Terminal-Icons | |
| # https://github.com/dahlbyk/posh-git | |
| Import-Module posh-git |
This file contains hidden or 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
| # REF: https://geekworkbench.com/blog/technical/git-config-global-settings/ | |
| # REF: https://www.git-tower.com/blog/the-ultimate-guide-to-git-config | |
| [user] | |
| name = #your-name | |
| email = #your-email | |
| [core] | |
| # Windows: convert LF to CRLF on checkout, CRLF to LF on commit | |
| autocrlf = true |
This file contains hidden or 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
| $OutputEncoding = [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding | |
| Import-Module Terminal-Icons | |
| Import-Module PSReadLine | |
| Import-Module CompletionPredictor | |
| Set-PSReadLineOption -PredictionSource HistoryAndPlugin | |
| Set-PSReadLineOption -PredictionViewStyle Inline | |
| Set-PSReadLineOption -ShowToolTips | |
| Set-PSReadLineOption -HistoryNoDuplicates |
This file contains hidden or 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
| { | |
| // Nerds Fonts: https://github.com/ryanoasis/nerd-fonts | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": [], | |
| "centerOnLaunch": true, | |
| "copyFormatting": "none", | |
| "copyOnSelect": true, | |
| "defaultProfile": "{dc0781d5-4b33-4c76-8989-14dc15bb60b4}", |
This file contains hidden or 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
| { | |
| // Language-specific formatter settings: choose the default formatter for each file type. | |
| // This makes sure HTML, CSS, JS, JSON, and TypeScript files are formatted consistently. | |
| "[html]": { | |
| "editor.defaultFormatter": "vscode.html-language-features", | |
| }, | |
| "[css]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| }, | |
| "[javascript]": { |