Last active
March 19, 2025 00:30
-
-
Save dhirschfeld/7878e26dad0355aaeb3cacc8454e0ff3 to your computer and use it in GitHub Desktop.
Config Files
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
Remove-Item alias:rm -ErrorAction SilentlyContinue | |
If (Test-Path alias:curl) { Remove-Item alias:curl }; | |
Set-Alias which Get-Command | |
function la { eza -ahlo --git --git-ignore @args } | |
function activate { | |
param( | |
[string]$environment = "py312" | |
) | |
pixi shell --manifest-path (Resolve-Path "~/code/quantdev").Path --environment $environment | |
} | |
Invoke-Expression (&starship init powershell) | |
Invoke-Expression (&pixi completion --shell powershell | Out-String) |
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
command_timeout = 3000 | |
[conda] | |
symbol = " " | |
[python] | |
disabled = true | |
[container] | |
disabled=true | |
[terraform] | |
disabled=true | |
[directory] | |
use_os_path_sep = false | |
truncation_length = 8 | |
truncation_symbol = "…/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment