Skip to content

Instantly share code, notes, and snippets.

@meetmistry0
meetmistry0 / config.fish
Last active October 12, 2022 13:23
Fish shell config
# Remove fish default greeting
set fish_greeting ""
# File Management aliases.
alias rmf "rm -rf"
alias grep "grep --color auto"
alias cp "cp -iv"
alias mv "mv -iv"
alias rm "rm -vI"
alias mkdir "mkdir -pv"
@meetmistry0
meetmistry0 / profile.ps1
Created June 3, 2022 12:44
Powershell Profile
# PS-Readline
Import-Module PSReadLine
Set-PSReadLineOption -PredictionSource History
Set-PSReadLineOption -EditMode Windows
# Lists all available options in block form instead of just autocompleting (Going one by one).
Set-PSReadlineKeyHandler -Chord Tab -Function MenuComplete
# Terminal Icons
Import-Module -Name Terminal-Icons
@meetmistry0
meetmistry0 / starship.toml
Last active January 10, 2022 10:16
Starship prompt config
# Sets the format for the modules.
format = """
$username\
$hostname\
$shlvl\
$singularity\
$kubernetes\
$directory\
$vcsh\
$git_branch\