01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
# _ _ _
# __ _| (_) __ _ ___ ___ ___ ___| |__
# / _` | | |/ _` / __|/ _ \/ __| / __| '_ \
# | (_| | | | (_| \__ \ __/\__ \_\__ \ | | |
# \__,_|_|_|\__,_|___/\___||___(_)___/_| |_|
#
# Pablo (C) 2023
#
# File that contains all aliases variables I use. This can be sourced from,
# bash, fish, sh, zsh, etc.
alias less='less -Rf'
alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"'
alias gdb='gdb -nh -x "$XDG_CONFIG_HOME/gdb/init"'
alias lynx='lynx -cfg="$XDG_CONFIG_HOME/lynx/lynx.cfg"'
# Hide my timezone when commiting
alias git='env TZ=-0000 git'
alias abook='abook --config "$XDG_CONFIG_HOME"/abook/abookrc --datafile "$XDG_DATA_HOME"/abook/addressbook'
# Make neomutt stealthy
alias neomutt='env TZ=-0000 neomutt'
alias impressive='impressive --transition None -C ~/picx/Cursors/Laser\ Beam\ Normal.cur'
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias todo='nvim ~/TODO.md'
alias idris2='rlwrap idris2'
alias petite='petite --eehistory "$XDG_DATA_HOME"/chezscheme/history'
alias chez='chez --eehistory "$XDG_DATA_HOME"/chezscheme/history'
alias ssh='TERM=screen /usr/bin/ssh'
alias noq='rlwrap -H "$XDG_DATA_HOME/noq_history" noq'
alias ollama="HOME='$XDG_CONFIG_HOME/ollama' /usr/sbin/ollama"