Compare commits

..

6 commits

Author SHA1 Message Date
f91013be2b bashrc: Source aliases after everything else 2026-04-21 08:21:36 -05:00
Andrea Rogers
a1bb0d05a1
sway: Add emoji picker 2026-02-16 20:27:08 -06:00
Andrea Rogers
8c66fb2520
bashrc: set GPG_TTY 2026-02-16 20:09:19 -06:00
0050e04cc3 vimrc: Make netrw default to tree view 2026-02-10 00:26:17 -06:00
8f1e5a6b68 aliases: Fix Python command checks 2026-02-10 00:23:42 -06:00
740ab75238 profile: Add core_perl to PATH on Arch Linux 2026-02-10 00:20:56 -06:00
5 changed files with 13 additions and 3 deletions

View file

@ -3,5 +3,5 @@ alias mk-venv='python -m venv .venv'
alias do-venv='. .venv/bin/activate'
alias rm-venv='rm -rf .venv'
command -v pdb > /dev/null || alias pdb='python -m pdb'
command -v pip > /dev/null || alias pip='python -m pip'
[ -n "$(command -v pdb)" ] || alias pdb='python -m pdb'
[ -n "$(command -v pip)" ] || alias pip='python -m pip'

View file

@ -3,6 +3,9 @@
HISTSIZE=10000
HISTFILESIZE=900000
GPG_TTY=$(tty)
export GPG_TTY
case ${TERM} in
xterm*|rxvt*|Eterm|aterm|kterm|gnome*|alacritty*|tmux-256color|linux)
PS1='\[\033]2;\h:\W \u\007\]\h:\[\033[38;5;219m\]\W\[\033[00m\] \[\033[01;35m\]\u\[\033[00m\]\$ '

View file

@ -16,6 +16,7 @@ fi
case $ID in
arch)
export GUILE_LOAD_PATH='/usr/local/share/guile/site/3.0:/usr/share/guile/3.0:/usr/share/guile/site/3.0:/usr/share/guile/site:/usr/share/guile'
export PATH="$PATH:/usr/bin/core_perl"
;;
esac

View file

@ -44,9 +44,12 @@ bindsym $mod2+Shift+1 exec projectM-pulseaudio
# kill focused window
bindsym $mod+Shift+c kill
# start dmenu (a program launcher)
# start bemenu (a program launcher)
bindsym $mod+p exec bemenu-run --border 3 --bdr "#0c0c0c" --fn "Monofur Nerd Font Propo 10" --tb "#9ece9e" --tf "#0c0c0c" --nb "#1f1f1f" --nf "#ffcfaf" --sb "#f0dfaf" --sf "#1f1f1f" --hf "#9ece9e"
# emojis
bindsym $mod+u exec rofimoji --action clipboard --selector bemenu --selector-args '--border 3 --bdr "#0c0c0c" --fn "Monofur Nerd Font Propo 10" --tb "#9ece9e" --tf "#0c0c0c" --nb "#1f1f1f" --nf "#ffcfaf" --sb "#f0dfaf" --sf "#1f1f1f" --hf "#9ece9e"'
# thigh gaps
# gaps inner 10
# gaps outer 20

3
.vimrc
View file

@ -301,3 +301,6 @@ au Syntax * RainbowParenthesesLoadBraces
" Read my lips: NO MOUSE
autocmd BufEnter * set mouse=
" Netrw defaults
let g:netrw_liststyle = 3