-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivate_dot_zimrc
More file actions
49 lines (36 loc) · 1.2 KB
/
private_dot_zimrc
File metadata and controls
49 lines (36 loc) · 1.2 KB
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
# -------
# Modules
# -------
# sane Zsh built-in environment options
zmodule environment
# correct bindkeys for input events
zmodule input
# utility aliases, functions, and colors
zmodule utility
# prompt
zmodule romkatv/powerlevel10k --use degit
# ----------
# Completion
# ----------
# additional completion definitions for Zsh
zmodule zsh-users/zsh-completions --fpath src
# conda autocomplete
zmodule conda-incubator/conda-zsh-completion -s 'conda-zsh-completion.plugin.zsh'
# enable and configure smart and extensive tab completion
# NOTE: this calls compinit, so it should be initialized after all completions
zmodule completion
# -------------------------------------
# Modules that must be initialized last
# -------------------------------------
# syntax highlighting for Zsh.
# NOTE: must be sourced after completion
zmodule zsh-users/zsh-syntax-highlighting
# advanced vi mode
# NOTE: must be sourced after highlighting
zmodule jeffreytse/zsh-vi-mode
# history search (up arrow) for Zsh.
# NOTE: must be sourced after zsh-users/zsh-syntax-highlighting
zmodule zsh-users/zsh-history-substring-search
# autosuggestions for Zsh.
# NOTE: must be sourced after zsh vi mode
zmodule zsh-users/zsh-autosuggestions