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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": { | |
| "action": "globalSummon", | |
| "name": "_quake", | |
| "dropdownDuration": 200, |
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
| # General modules | |
| Import-Module -Name PSReadLine # typeahead predictions and whatnot | |
| Import-Module -Name Terminal-Icons # Icons when listing directories | |
| Import-Module -Name PSFzf # activate using `Ctrl T`, `Ctrl R` and `Alt C` | |
| Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1 # Exposes `refreshenv` | |
| Invoke-Expression (&starship init powershell) | |
| # Advanced completion features (arrow up and down after having started typing) | |
| Set-PSReadLineOption -HistorySearchCursorMovesToEnd | |
| Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward |
OlderNewer