diff options
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 23 |
1 files changed, 17 insertions, 6 deletions
@@ -112,19 +112,19 @@ alias df='df -h' | |||
112 | alias mirrors='sudo pacman-mirrors -f 0 && sudo pacman -Syy' | 112 | alias mirrors='sudo pacman-mirrors -f 0 && sudo pacman -Syy' |
113 | alias -g C='| xsel -b' # Copy to clipboard | 113 | alias -g C='| xsel -b' # Copy to clipboard |
114 | alias bc='bc -l' | 114 | alias bc='bc -l' |
115 | alias ledger="ledger -f ~/Nextcloud/ledger.ledger" | 115 | alias ledger="ledger -f ~/nextcloud/ledger.ledger" |
116 | alias report="report -f ~/Nextcloud/ledger.ledger" | 116 | alias report="report -f ~/nextcloud/ledger.ledger" |
117 | alias think='tickle +1d' #think it over | 117 | alias think='tickle +1d' #think it over |
118 | alias lim='nvim /home/yigit/Nextcloud/ledger.ledger' | 118 | alias lim='nvim /home/yigit/nextcloud/ledger.ledger' |
119 | alias maybe='task due:someday list' | 119 | alias maybe='task due:someday list' |
120 | alias music='mpv --no-vid' | 120 | alias music='mpv --no-vid' |
121 | alias s="du -hs * | sort -rh | head -5" | 121 | alias s="du -hs * | sort -rh | head -5" |
122 | alias b="buku --suggest --colors 'onlxm'" | 122 | alias b="buku --suggest --colors 'onlxm'" |
123 | alias tp='trash-put' | 123 | alias tp='trash-put' |
124 | alias ls='exa' | 124 | alias ls='exa' |
125 | alias wim='nvim /home/yigit/Nextcloud/personal_wiki/text/index.wiki' | 125 | alias wim='nvim /home/yigit/nextcloud/personal_wiki/text/index.wiki' |
126 | alias ssh='TERM=xterm-256color ssh' | 126 | alias ssh='TERM=xterm-256color ssh' |
127 | alias torem='cd /home/yigit/Nextcloud/remind/' | 127 | alias torem='cd /home/yigit/nextcloud/remind/' |
128 | alias ta='task add +next +@home' | 128 | alias ta='task add +next +@home' |
129 | 129 | ||
130 | export MANPAGER="nvim +Man! -c ':set signcolumn='" | 130 | export MANPAGER="nvim +Man! -c ':set signcolumn='" |
@@ -181,10 +181,21 @@ n () | |||
181 | fi | 181 | fi |
182 | } | 182 | } |
183 | 183 | ||
184 | export NNN_BMS='w:~/Nextcloud/personal_wiki;r:~/Nextcloud/remind;n:~/Nextcloud' | 184 | export NNN_BMS='w:~/nextcloud/personal_wiki;r:~/nextcloud/remind;n:~/nextcloud' |
185 | export NNN_COLORS="2136" # use a different color for each context | 185 | export NNN_COLORS="2136" # use a different color for each context |
186 | export NNN_FCOLORS='c1e2272e006033f7c6d6abc4' | 186 | export NNN_FCOLORS='c1e2272e006033f7c6d6abc4' |
187 | export NNN_PLUG='d:dragdrop;z:fzz;p:preview-tui' | 187 | export NNN_PLUG='d:dragdrop;z:fzz;p:preview-tui' |
188 | 188 | ||
189 | # Add RVM to PATH for scripting. Make sure this is the last PATH variable change. | 189 | # Add RVM to PATH for scripting. Make sure this is the last PATH variable change. |
190 | export PATH="$PATH:$HOME/.rvm/bin" | 190 | export PATH="$PATH:$HOME/.rvm/bin" |
191 | |||
192 | PATH="/home/yigit/perl5/bin${PATH:+:${PATH}}"; export PATH; | ||
193 | PERL5LIB="/home/yigit/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB; | ||
194 | PERL_LOCAL_LIB_ROOT="/home/yigit/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT; | ||
195 | PERL_MB_OPT="--install_base \"/home/yigit/perl5\""; export PERL_MB_OPT; | ||
196 | PERL_MM_OPT="INSTALL_BASE=/home/yigit/perl5"; export PERL_MM_OPT; | ||
197 | |||
198 | if [ -n "$DESKTOP_SESSION" ];then | ||
199 | eval $(gnome-keyring-daemon --start) | ||
200 | export SSH_AUTH_SOCK | ||
201 | fi | ||