mirror of
https://github.com/Horhik/dotfiles.git
synced 2024-10-31 22:17:31 +00:00
15 lines
230 B
Bash
15 lines
230 B
Bash
|
#
|
||
|
# ~/.bashrc
|
||
|
#
|
||
|
|
||
|
# If not running interactively, don't do anything
|
||
|
[[ $- != *i* ]] && return
|
||
|
|
||
|
alias ls='ls --color=auto'
|
||
|
alias vim=nvim
|
||
|
alias notify-send=twmnc
|
||
|
export TERMINAL=alacritty
|
||
|
set TERMINAL alacritty
|
||
|
PS1='[\u@\h \W]\$ '
|
||
|
|