dotfiles/bash/.bashrc

13 lines
290 B
Bash
Raw Normal View History

2020-01-15 14:14:30 -05:00
# .bashrc
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
2020-01-20 15:48:48 -05:00
alias vlime='sbcl --load ~/.vim/plugins/vlime/lisp/start-vlime.lisp'
2020-01-15 14:14:30 -05:00
PS1='[\u@\h \W]\$ '
export DISPLAY=:0
export LIBGL_ALWAYS_INDIRECT=1
2020-01-20 15:48:48 -05:00
export FZF_DEFAULT_COMMAD="find -L"