diff options
-rw-r--r-- | zsh/.zshenv | 1 | ||||
-rw-r--r-- | zsh/.zshrc | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/zsh/.zshenv b/zsh/.zshenv new file mode 100644 index 0000000..ba38a01 --- /dev/null +++ b/zsh/.zshenv @@ -0,0 +1 @@ +## diff --git a/zsh/.zshrc b/zsh/.zshrc new file mode 100644 index 0000000..803dc31 --- /dev/null +++ b/zsh/.zshrc @@ -0,0 +1,28 @@ +# Lines configured by zsh-newuser-install +HISTFILE=~/.config/zsh/histfile +HISTSIZE=1000 +SAVEHIST=1000 +setopt autocd +unsetopt beep +bindkey -v +# End of lines configured by zsh-newuser-install +# The following lines were added by compinstall +zstyle :compinstall filename '/home/george/.zshrc' + +# Changing Default Prompt +PROMPT='[%F{160}%n %F{93}%1d%f] $ ' + +# Aliases +alias ls='ls -a --color=always' +alias exa="exa -a --header --long --git" + +alias mount-shared="sudo mount /dev/sda1 /mnt/Shared" +alias mount-fedora="sudo mount /dev/sda5 /mnt/Fedora" +alias umount-shared="sudo umount /mnt/Shared" +alias umount-fedora="sudo umount /mnt/Fedora" + +alias lle="[ \"$(findmnt | grep /mnt/Shared -c)\" = \"1\" ] || mount-shared && mkdir -p /mnt/Shared/Text/daily-log/$(date +%Y-%m) && vim /mnt/Shared/Text/daily-log/$(date +%Y-%m)/L$(date --iso-8601).txt" + +autoload -Uz compinit +compinit +# End of lines added by compinstall |