summaryrefslogtreecommitdiff
path: root/zsh
diff options
context:
space:
mode:
authorsateoki-admin <sateoki@protonmail.com>2021-10-31 21:00:57 +0000
committersateoki-admin <sateoki@protonmail.com>2021-10-31 21:00:57 +0000
commitb2ccfbf3b732f30c403c9b09122dcac5142abea5 (patch)
treea15c2a158d80e43ed584f525819a48f7e193d874 /zsh
parentb1478245933500e17585454ab37caccffa3958da (diff)
Commit
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc15
1 files changed, 12 insertions, 3 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 803dc31..2383bae 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -9,6 +9,12 @@ bindkey -v
# The following lines were added by compinstall
zstyle :compinstall filename '/home/george/.zshrc'
+# Other general user config
+export LESSHISTFILE=/dev/null # Remove ~/.lesshst generation
+autoload -U colors && colors
+autoload -U promptinit && promptinit
+
+
# Changing Default Prompt
PROMPT='[%F{160}%n %F{93}%1d%f] $ '
@@ -16,13 +22,16 @@ PROMPT='[%F{160}%n %F{93}%1d%f] $ '
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 mount-shared="[ \"$(findmnt | grep /mnt/Shared -c)\" = \"0\" ] && sudo mount /dev/sda1 /mnt/Shared ; echo \"$(findmnt | grep /mnt/Shared -c)\""
+alias mount-fedora="[ \"$(findmnt | grep /mnt/Fedora -c)\" = \"0\" ] && 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"
+alias lle="mount-shared ; mkdir -p /mnt/Shared/Text/daily-log/$(date +%Y-%m) ; nvim /mnt/Shared/Text/daily-log/$(date +%Y-%m)/L$(date --iso-8601).txt"
+alias fin="mount-shared ; libreoffice --calc /mnt/Shared/Trackers/Financial/new/$(date +%Y-%m).ods & "
+
+# Add command that open Month end entry for final month, at /mnt/Shared/Text/daily-log/ and previous months month then filename 2021-NN - How I Improved.txt
autoload -Uz compinit
compinit
# End of lines added by compinstall