blob: b712564c45d8842934383bfc72e1ea4e2acd1385 (
plain)
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
|
source /usr/share/zsh/share/antigen.zsh
# Load the oh-my-zsh's library.
# antigen use oh-my-zsh
# Bundles from the default repo.
antigen bundle git
# antigen bundle refined
antigen bundle command-not-found
antigen bundle vi-mode
# Syntax highlighting bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
antigen bundle mafredri/zsh-async
#antigen bundle DFurnes/purer
antigen bundle sindresorhus/pure
# Tell Antigen that you're done.
antigen apply
################################################
bindkey -v
alias ls="ls --color=auto"
alias dir="dir --color=auto"
alias grep="grep --color=auto"
alias dmesg='dmesg --color'
|