summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
blob: cec17538692d28e3422cf2048a9c82ec40dae4fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# History
HISTFILE=~/.config/zsh/zsh_history
HISTSIZE=1001
SAVEHIST=1000
setopt HIST_EXPIRE_DUPS_FIRST
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
setopt HIST_FIND_NO_DUPS
setopt HIST_SAVE_NO_DUPS

# Various
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'

# Path
export PATH="$PATH:/home/george/.local/bin"

# Configuring applications to use nvidia GPU
alias mpv="prime-run mpv"

# Other general user config
export USRCONFDIR=/home/george/.usrconf  # Set user configuration directory
export LANG=en_GB.UTF-8
autoload -U colors && colors
autoload -U promptinit && promptinit


# Dealing with .lesshst
export LESSHISTFILE=/dev/null			# Remove ~/.lesshst generation

# TODO: add all XDG directories in the right places, and then run the commands
# as per the SO post: https://stackoverflow.com/questions/26198926/why-does-lesshst-keep-showing-up-in-my
# to get rid of .lesshst file and where man creates it as well

# alias less='less --lesskey-file=$XDG_CONFIG_HOME/lesskey'
# alias man='man --pager="less --lesskey-file=$XDG_CONFIG_HOME/lesskey"'

# Dealing with .fehbg
alias feh="feh --no-fehbg"

# Newsboat 
alias newsboat="newsboat -u ~/.config/newsboat/urls"


# Changing Default Prompt
# PS1='[%F{#ff0000}%n%f %F{#6a0dad}%1d%f] '
PS1='[%F{#ff0000}%1d%f] : '
PROMPT=$PS1

# Aliases / Functions
alias ls='ls -a --color=always'
alias e="exa -a --header --long --git --time-style=long-iso"
alias pkg-query="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'"
alias s="systemctl"
alias c="clear ; e"
alias r="newsboat"
alias m="ncmpcpp"
alias v="vim"
alias n="nvim"
alias randbg="wal -i $USRCONFDIR/backgrounds/nice-photos > /dev/null" # random background
alias rb="wal -R > /dev/null" # refresh bg
alias rbghs="randbg --backend haishoku" # random background haishoku backend
alias td="mn todos"
alias wtd="mn work-todos"
alias awl="mn anime-watchlist"

lle() { # Life Log Entry
    if [ -z "$1" ]; then
        mkdir -p ~/docs/daily-log/$(date +%Y-%m)
        nvim ~/docs/daily-log/$(date +%Y-%m)/L$(date --iso-8601).txt
    else 
        mkdir -p ~/docs/daily-log/$(date +%Y-%m -d $1)
        nvim ~/docs/daily-log/$(date +%Y-%m -d $1)/L$(date --iso-8601 -d $1).txt
    fi
}

mer() { # Month End Recap - TODO: get this to work just with e.g. mer 2022-01
    if [ -z "$1"]; then 
        mkdir -p ~/docs/daily-log/$(date +%Y-%m)
        nvim "~/docs/daily-log/$(date +%Y-%m)/L$(date +%Y-%m) - Month End Recap"
    else 
        mkdir -p /mnt/Shared/Text/daily-log/$(date +%Y-%m -d $1)
        nvim "~/docs/daily-log/$(date +%Y-%m -d $1)/L$(date +%Y-%m -d $1) - Month End Recap" 
    fi
}

yer() { # Year End Recap - TODO: see mer TODO
    if [ -z "$1"]; then 
        mkdir -p ~/docs/daily-log/$(date +%Y)-12
        nvim "~/docs/daily-log/$(date +%Y)-12/$(date +%Y) - Year End Recap"
    else 
        mkdir -p ~/docs/daily-log/$(date %Y -d $1)-12
        nvim "~/docs/daily-log/$(date +%Y -d $1)-12/$(date +%Y -d $1) - Year End Recap"
    fi
}




mn() { # make note
    nvim "$HOME/docs/$1"
}
alias en="nvim /mnt/Shared/Text"
alias fin="libreoffice --calc /mnt/Shared/Trackers/Financial/new/$(date +%Y-%m).ods & "

# Aliases for git
alias gb="git branch"
alias gco="git checkout" 
alias gcom="git checkout master"
alias gdb="git branch -d"


autoload -Uz compinit
compinit
# End of lines added by compinstall

# Sourcing for zsh
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh