-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.zshrc
More file actions
26 lines (21 loc) · 747 Bytes
/
.zshrc
File metadata and controls
26 lines (21 loc) · 747 Bytes
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
#
# Executes commands at the start of an interactive session.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
# Customize to your needs...
expand-or-complete-with-dots() { # This bunch of code displays red dots when autocompleting
echo -n "\e[31m......\e[0m" # a command with the tab key, "Oh-my-zsh"-style.
zle expand-or-complete
zle redisplay
}
zle -N expand-or-complete-with-dots
bindkey "^I" expand-or-complete-with-dots
source ~/.bashrc
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
[ -f /home/sean/.config/cani/completions/_cani.zsh ] && source /home/sean/.config/cani/completions/_cani.zsh