diff options
author | DrNuget <drnuget@outlook.com> | 2025-01-16 04:37:37 +0200 |
---|---|---|
committer | DrNuget <drnuget@outlook.com> | 2025-01-16 04:37:37 +0200 |
commit | 3fcf1a3a0affa5027c399c2ad05b8c573ebedb0e (patch) | |
tree | 9c03e6450cedd0afa006c12bff0c0b13542fb8e8 /.bashrc |
initial commit
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,26 @@ +# +# ~/.bashrc +# + +# If not running interactively, don"t do anything +[[ $- != *i* ]] && return + +set -o vi + +alias tmux="tmux -u" +alias cal="cal -mw" +alias fetch="fastfetch" +alias scim="sc-im" + +alias ls="ls --color=auto" +alias grep="grep --color=auto" + +alias vrc="vim $HOME/.config/nvim/init.lua" + +#Arch default PS1: +PS1="[\u@\h \W]\$ " + +#Multicolor PS1: +#PS1="\[\033[31m\][\[\033[33m\]\u\[\033[32m\]@\[\033[34m\]\h \[\033[36m\]\W\[\033[31m\]]\[\033[0m\]$ " + +export MANPAGER="nvim +Man!" |