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
#!/bin/sh
# _ _ _
# __ _| (_) __ _ ___ ___ ___ ___| |__
# / _` | | |/ _` / __|/ _ \/ __| / __| '_ \
# | (_| | | | (_| \__ \ __/\__ \_\__ \ | | |
# \__,_|_|_|\__,_|___/\___||___(_)___/_| |_|
#
# Pablo (C) 2023
#
# can be sourced from, bash, fish, sh, zsh, etc.
alias less='less -Rf'
alias ls='ls --color=auto --group-directories-first'
alias grep='grep --color=auto'
alias ssh='TERM=screen /usr/bin/ssh'
# hide my timezone
alias git='env TZ=-0000 git'
alias neomutt='env TZ=-0000 neomutt'
# use XDG paths
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"'
alias abook='abook --config "$XDG_CONFIG_HOME"/abook/abookrc --datafile "$XDG_DATA_HOME"/abook/addressbook'
alias impressive='impressive --transition None -C ~/picx/cursors/laser-beam.cur'
alias todo='nvim ~/TODO.md'