-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zimrc
37 lines (35 loc) · 1.14 KB
/
.zimrc
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
# Start configuration added by Zim install {{{
# -------
# Modules
# -------
# Sets sane Zsh built-in environment options.
zmodule environment
# Provides handy git aliases and functions.
zmodule git
# Applies correct bindkeys for input events.
zmodule input
# Sets a custom terminal title.
zmodule termtitle
# Utility aliases and functions. Adds colour to ls, grep and less.
zmodule utility
# add aliases for pacman
zmodule pacman
# easy archive and unarchiving
zmodule archive
# Additional completion definitions for Zsh.
zmodule zsh-users/zsh-completions
# Enables and configures smart and extensive tab completion.
# completion must be sourced after zsh-users/zsh-completions
zmodule completion
# Fish-like autosuggestions for Zsh.
zmodule zsh-users/zsh-autosuggestions
# Fish-like syntax highlighting for Zsh.
# zdharma/fast-syntax-highlighting must be sourced after completion
zmodule zdharma/fast-syntax-highlighting
# Fish-like history search (up arrow) for Zsh.
zmodule zsh-users/zsh-history-substring-search
# add zsh autopairs
zmodule hlissner/zsh-autopair
# powerlevel10k prompt
zmodule romkatv/powerlevel10k
# }}} End configuration added by Zim install