blob: e740a6c51b8928777f95c5f6dafca24fd8265896 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
source $HOME/.profile
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
eval $(keychain --eval --quiet id_rsa)
source /usr/share/fzf/completion.bash
source /usr/share/fzf/key-bindings.bash
alias irc="ssh -t adnab.me irc"
#exec fish
alias sway='exec sway'
|