Skip to content

Commit 3a0c997

Browse files
committed
1 parent e0ea620 commit 3a0c997

6 files changed

Lines changed: 55 additions & 0 deletions

File tree

.gitmodules

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,12 @@
5252
[submodule "vim/start/vim-polyglot"]
5353
path = vim/start/vim-polyglot
5454
url = https://github.com/sheerun/vim-polyglot.git
55+
[submodule "zsh/zsh-autosuggestions"]
56+
path = zsh/zsh-autosuggestions
57+
url = https://github.com/zsh-users/zsh-autosuggestions.git
58+
[submodule "zsh/zsh-syntax-highlighting"]
59+
path = zsh/zsh-syntax-highlighting
60+
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
61+
[submodule "zsh/oh-my-zsh"]
62+
path = zsh/oh-my-zsh
63+
url = https://github.com/ohmyzsh/ohmyzsh.git

install.conf.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
~/.wgetrc: wget/wgetrc
5757
~/.config/yay/config.json: yay/config.json
5858
~/.Xresources: i3/Xresources
59+
~/.zshrc: zsh/zshrc
60+
~/.oh-my-zsh: zsh/oh-my-zsh
61+
~/.zsh-syntax-highlighting: zsh/zsh-syntax-highlighting
62+
~/.zsh-autosuggestions: zsh/zsh-autosuggestions
5963

6064
# graphic
6165
- link:

zsh/oh-my-zsh

Submodule oh-my-zsh added at 35068db

zsh/zsh-autosuggestions

Submodule zsh-autosuggestions added at 85919cd

zsh/zsh-syntax-highlighting

Submodule zsh-syntax-highlighting added at 5eb677b

zsh/zshrc

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Path to your oh-my-zsh installation.
2+
export ZSH=~/.oh-my-zsh
3+
fpath=( ~/.zcomplete "${fpath[@]}" )
4+
5+
ZSH_THEME=""
6+
7+
CASE_SENSITIVE="true"
8+
DISABLE_AUTO_UPDATE="true"
9+
DISABLE_LS_COLORS="false"
10+
DISABLE_AUTO_TITLE="true"
11+
ENABLE_CORRECTION="false"
12+
COMPLETION_WAITING_DOTS="true"
13+
DISABLE_UNTRACKED_FILES_DIRTY="true"
14+
HIST_STAMPS="yyyy-mm-dd"
15+
# Would you like to use another custom folder than $ZSH/custom?
16+
# ZSH_CUSTOM=/path/to/new-custom-folder
17+
plugins=(
18+
colored-man-pages
19+
common-aliases
20+
sudo
21+
)
22+
source $ZSH/oh-my-zsh.sh
23+
24+
alias reload=". ~/.zshrc"
25+
26+
ZSH_AUTOSUGGEST_STRATEGY=(history)
27+
source ~/.zsh-autosuggestions/zsh-autosuggestions.zsh
28+
# Ctrl+Space
29+
bindkey '^ ' autosuggest-accept
30+
31+
source ~/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
32+
33+
source ~/.profile.d/load
34+
35+
if type kubectl &>/dev/null; then
36+
source <(kubectl completion zsh)
37+
fi
38+
39+
RPROMPT='[%*]'

0 commit comments

Comments
 (0)