Add .zshrc-linux
This commit is contained in:
parent
bc8e4f4900
commit
779129e2b4
29
.zshrc-linux
Normal file
29
.zshrc-linux
Normal file
@ -0,0 +1,29 @@
|
||||
# --- OH-MY-ZSH ---
|
||||
export ZSH="$HOME/.oh-my-zsh"
|
||||
ZSH_THEME="philips"
|
||||
zstyle ':omz:update' mode auto
|
||||
zstyle ':omz:update' frequency 7
|
||||
plugins=(git)
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
export LANG=en_US.UTF-8
|
||||
export EDITOR='nano'
|
||||
|
||||
# --- ALIAS ---
|
||||
alias traceroute='traceroute -a -w 2'
|
||||
alias ls="ls -lhs --color --group-directories-first"
|
||||
alias lsa="ls -lhsa --color --group-directories-first"
|
||||
alias gcs="git commit -S -m"
|
||||
alias duf="docker compose down && docker compose up -d --build && docker compose logs -f"
|
||||
hf() {
|
||||
curl -F file=@$1 https://hardfiles.org | pbcopy
|
||||
}
|
||||
#hfs() {
|
||||
# filename=/Users/$(whoami)/.scrot/$(cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1).png
|
||||
# screencapture -i $filename
|
||||
# hf $filename
|
||||
#}
|
||||
hft() {
|
||||
filename=/Users/$(whoami)/.scrot/$(cat /dev/urandom | LC_ALL=C tr -dc 'a-zA-Z0-9' | fold -w 50 | head -n 1).txt
|
||||
nano $filename
|
||||
hf $filename
|
||||
}
|
Loading…
Reference in New Issue
Block a user