diff --git a/.aliases/python.bash b/.aliases/python.bash index 84218e7..522a729 100644 --- a/.aliases/python.bash +++ b/.aliases/python.bash @@ -3,5 +3,5 @@ alias mk-venv='python -m venv .venv' alias do-venv='. .venv/bin/activate' alias rm-venv='rm -rf .venv' -[ -n "$(command -v pdb)" ] || alias pdb='python -m pdb' -[ -n "$(command -v pip)" ] || alias pip='python -m pip' +command -v pdb > /dev/null || alias pdb='python -m pdb' +command -v pip > /dev/null || alias pip='python -m pip' diff --git a/.bashrc b/.bashrc index e2d24b3..83395c0 100644 --- a/.bashrc +++ b/.bashrc @@ -3,9 +3,6 @@ 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\]\$ ' diff --git a/.profile.linux b/.profile.linux index 4e74629..7bdd557 100644 --- a/.profile.linux +++ b/.profile.linux @@ -16,7 +16,6 @@ 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 diff --git a/.sway/config b/.sway/config index 0565c68..0e842ea 100755 --- a/.sway/config +++ b/.sway/config @@ -44,12 +44,9 @@ bindsym $mod2+Shift+1 exec projectM-pulseaudio # kill focused window bindsym $mod+Shift+c kill -# start bemenu (a program launcher) +# start dmenu (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 diff --git a/.vimrc b/.vimrc index f22d035..7e48f5d 100644 --- a/.vimrc +++ b/.vimrc @@ -301,6 +301,3 @@ au Syntax * RainbowParenthesesLoadBraces " Read my lips: NO MOUSE autocmd BufEnter * set mouse= - -" Netrw defaults -let g:netrw_liststyle = 3