Skip to content

Instantly share code, notes, and snippets.

View kszinhu's full-sized avatar
🌍
- The earth needs more humans

Cassiano Rodrigues kszinhu

🌍
- The earth needs more humans
View GitHub Profile
@kszinhu
kszinhu / config.fish
Last active August 4, 2023 04:33
My global config for fish shell
if status is-interactive
# Commands to run in interactive sessions can go here
end
# Motd
set -g -x fish_greeting ''
# ----
# Inits
# ----
@kszinhu
kszinhu / Microsoft.PowerShell_profile.ps1
Last active December 1, 2023 16:28
My PowerShell Profile
Invoke-Expression (&starship init powershell)
# Another inits
Import-Module "$($(Get-Item $(Get-Command scoop.ps1).Path).Directory.Parent.FullName)\modules\scoop-completion"
Import-Module git-aliases -DisableNameChecking
Import-Module posh-git
# Alias cd to directories
function cd_to_projects { set-location "C:\Users\rodri\projects" }
set-alias projects cd_to_projects