dotfiles/.bashrc
2024-01-25 21:10:19 -06:00

42 lines
617 B
Bash

# --------- #
# ~/.bashrc #
# --------- #
# if not running interactively, don't do anything
[[ $- != *i* ]] && return
# ------- #
# aliases #
# ------- #
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias ll='ls -l --color=auto'
alias ncmpcpp='ncmpcpp -b ~/.config/ncmpcpp/bindings'
alias nv='nvim'
alias lv='lvim'
alias lg='lazygit'
# --- #
# env #
# --- #
export VISUAL=nvim
export EDITOR="$VISUAL"
# ------- #
# startup #
# ------- #
# restore color scheme
# (cat ~/.cache/wal/sequences &)
# display system info on startup
pfetch
# initialize starship prompt
eval "$(starship init bash)"