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
# Shows navigable menu of all options when hitting Tab | |
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete | |
Import-Module PSReadLine | |
Set-PSReadLineOption -PredictionSource History | |
# Autocompletion for arrow keys | |
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward | |
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward | |
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
# Shows navigable menu of all options when hitting Tab | |
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete | |
Import-Module PSReadLine | |
Set-PSReadLineOption -PredictionSource History | |
# Autocompletion for arrow keys | |
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward | |
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward | |
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
{ | |
"editor.minimap.enabled": false, | |
// "editor.fontFamily": "'Operator Mono Light','Fira Code iScript', 'Fira Code', Consolas, 'Courier New', monospace", | |
// "editor.fontFamily": "'Operator Mono Lig', 'Fira Code', Consolas, 'Courier New', monospace", | |
// "editor.fontFamily": "'Fira Code iScript', 'Fira Code', Consolas, 'Courier New', monospace", | |
"editor.fontFamily": "JetBrains Mono", | |
// "editor.fontFamily": "MonoLisa", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 18, | |
// "terminal.integrated.fontFamily": "Meslo LG M for Powerline", |
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
<div class="pricing-container"> | |
<div class="pricing-switcher"> | |
<p class="fieldset"> | |
<input type="radio" name="duration-1" value="monthly" id="monthly-1" checked> | |
<label for="monthly-1">Monthly</label> | |
<input type="radio" name="duration-1" value="yearly" id="yearly-1"> | |
<label for="yearly-1">Yearly</label> | |
<span class="switch"></span> | |
</p> | |
</div> |
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
# Shows navigable menu of all options when hitting Tab | |
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete | |
# Autocompletion for arrow keys | |
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward | |
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward | |
# New-Alias <alias> <aliased-command> | |
New-Alias cl clear |