From 916992bd90e898cd19424b783e5a1bf02243c19b Mon Sep 17 00:00:00 2001 From: frosty Date: Wed, 21 Aug 2024 03:18:46 +0000 Subject: [PATCH] change fastfetch alias, correct indentation, and add nvim correction alias --- .bashrc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.bashrc b/.bashrc index d72de55..d860f61 100644 --- a/.bashrc +++ b/.bashrc @@ -1,6 +1,6 @@ case $- in - *i*) ;; - *) return ;; +*i*) ;; +*) return ;; esac # Shell options @@ -21,9 +21,12 @@ alias l='ls' alias c='cd' alias v='vim' alias d='docker' -alias f='fastfetch' +alias ff='fastfetch' alias g='git' +# Corrections +alias nvim='vim' + # Other options and commands alias ll='ls -l' alias gs='git status'