blob: 73f7c94202c9a405a2c02a817a6bc9e1513b40b4 (
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
|
#!/bin/sh
# History File
HISTFILE=$ZDOTDIR/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
# autocompletion
# Prompts
PROMPT="[%n] %F{blue}%d%f > "
RPROMPT="%? | %*"
# Generate cd aliases
while read a c ; do
alias "cd$a"="cd $c"
done <<< "$(cat "$HOME"/cdabbr)"
# Various
export LANG=en_GB.UTF-8
unsetopt autocd
unsetopt beep
bindkey -v
# Aliases
alias ls="eza"
alias l="ls -l"
alias ll="ls -la"
alias hx="helix"
alias vim="nvim"
alias v="nvim"
alias zshrc="nvim $HOME/.config/zsh/.zshrc"
alias zshenv="nvim $HOME/.config/zsh/.zshenv"
alias profile="nvim $HOME/.profile"
alias zprofile="nvim $HOME/.config/zsh/.zprofile"
alias tasks="nvim $HOME/tasks"
alias impl="nvim $HOME/impl"
alias fonts="nvim $HOME/.config/fontconfig/fonts.conf"
alias feeds="nvim $HOME/.config/newsboat/urls"
alias nb="newsboat"
alias packages="pacman -Qq | fzf --preview 'pacman -Qil {}' --layout=reverse --bind 'enter:execute(pacman -Qil {} | less)'"
# countdown() {\
# start="$(( $(date '+%s') + $1))"\
# while [ $start -ge $(date +%s) ]; do\
# time="$(( $start - $(date +%s) ))"\
# printf '%s\r' "$(date -u -d "@$time" +%H:%M:%S)"\
# sleep 0.1\
# done\
# }\
# \
# stopwatch() {\
# start=$(date +%s)\
# while true; do\
# time="$(( $(date +%s) - $start))"\
# printf '%s\r' "$(date -u -d "@$time" +%H:%M:%S)"\
# sleep 0.1\
# done\
# }
###
# The following lines were added by compinstall
zstyle ':completion:*' auto-description 'specify: %d'
zstyle ':completion:*' completer _complete _ignored _approximate
zstyle ':completion:*' completions 1
zstyle ':completion:*' format '-- %d --'
zstyle ':completion:*' glob 1
zstyle ':completion:*' group-name ''
zstyle ':completion:*' ignore-parents parent pwd
zstyle ':completion:*' insert-unambiguous true
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*' matcher-list 'm:{[:lower:]}={[:upper:]} r:|[._-/]=** r:|=**' 'm:{[:lower:]}={[:upper:]} r:|[._-/]=** r:|=**' 'm:{[:lower:]}={[:upper:]} r:|[._-/]=** r:|=**' 'm:{[:lower:]}={[:upper:]} r:|[._-/]=** r:|=**'
zstyle ':completion:*' max-errors 5
zstyle ':completion:*' menu select=1
zstyle ':completion:*' original true
zstyle ':completion:*' prompt '!- corrections (%e) -!'
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
zstyle ':completion:*' substitute 1
zstyle ':completion:*' verbose true
zstyle :compinstall filename '/home/neo/.config/zsh/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
|