Skip to content

Instantly share code, notes, and snippets.

View varunswarup0's full-sized avatar
💻
building...

Varun Swarup varunswarup0

💻
building...
View GitHub Profile
# 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
# 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
{
"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",
@varunswarup0
varunswarup0 / index.html
Created May 1, 2020 17:58
Responsive Flip Pricing Table
<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>
# 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