Skip to content

Instantly share code, notes, and snippets.

View webbertakken's full-sized avatar
🧙
Learning new things

Webber Takken webbertakken

🧙
Learning new things
View GitHub Profile
@webbertakken
webbertakken / settings.json
Last active June 4, 2026 02:21
My Windows Terminal config file
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command": {
"action": "globalSummon",
"name": "_quake",
"dropdownDuration": 200,
@webbertakken
webbertakken / Microsoft.PowerShell_profile.ps1
Created February 9, 2025 19:14
My PowerShell profile
# 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