13 lines
231 B
Plaintext
13 lines
231 B
Plaintext
# ~/.bashrc
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
export EDITOR=nvim;
|
|
export VISUAL=nvim;
|
|
alias cfg=chezmoi
|
|
alias cfge="chezmoi edit --apply"
|
|
|
|
|
|
alias ls='ls --color=auto'
|
|
PS1='[\u@\h \W]\$ '
|