dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit dc32af1243e731ee9f37f7ea4ed6bb2ebbed9747
parent bfdf0f94a83e0ce02ea3e4401e59d17bee7f9e72
Author: Linus <93053722+KoenigLinus@users.noreply.github.com>
Date:   Thu, 21 Nov 2024 18:41:01 +0100

exec

Diffstat:
A.bashrc | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/.bashrc b/.bashrc @@ -0,0 +1,18 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +alias l='ls -lah --color=auto' +alias ll='ls -lh --color=auto' +alias grep='grep --color=auto' +alias bashrc="nvim ~/.bashrc" +alias sbashrc="source ~/.bashrc" +alias v="nvim" +alias p="sudo pacman" +alias c="clear" +alias n="neofetch" + +PS1='[\u@\h \W]\$ '