File tree Expand file tree Collapse file tree 1 file changed +30
-38
lines changed
Expand file tree Collapse file tree 1 file changed +30
-38
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ My .zshrc config file with [Oh-My-ZSH](https://github.com/robbyrussell/oh-my-zsh
1010
1111### Ubuntu
1212
13- ``` bash
13+ ``` zsh
1414sudo apt install zsh powerline fonts-powerline zsh-syntax-highlighting git curl
1515echo " source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~ /.zshrc
1616chsh -s $( which zsh) # Might need sudo
@@ -19,7 +19,7 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/mas
1919
2020#### Fedora
2121
22- ``` bash
22+ ``` zsh
2323sudo dnf install zsh powerline powerline-fonts zsh-syntax-highlighting git curl
2424echo " source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> ~ /.zshrc
2525chsh -s $( which zsh) # Might need sudo
@@ -30,54 +30,46 @@ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/mas
3030
3131### Theme and plugins
3232
33- ``` bash
33+ ``` zsh
3434vim ~ /.zshrc
3535```
3636
3737#### Theme
3838
39+ ``` zsh
3940ZSH_THEME=" agnoster"
41+ ```
4042
41- #### Plugins
43+ #### My plugin list
4244
43- ``` .zshrc
45+ ``` zsh
4446plugins=(
4547 git
46- bundler
4748 dotenv
48- osx
4949 rake
50- rbenv
5150 ruby
51+ ansible
52+ autoenv
53+ autopep8
54+ docker
55+ docker-compose
56+ docker-machine
57+ django
58+ git-prompt
59+ gnu-utils
60+ man
61+ nmap
62+ npm
63+ pip
64+ pipenv
65+ pyenv
66+ pylint
67+ python
68+ rsync
69+ sudo
70+ systemd
71+ ubuntu
72+ virtualenv
73+ vscode
5274)
5375```
54-
55- #### My .zshrc plugin list
56-
57- - git
58- - dotenv
59- - rake
60- - ruby
61- - ansible
62- - autoenv
63- - autopep8
64- - docker
65- - docker-compose
66- - docker-machine
67- - django
68- - git-prompt
69- - gnu-utils
70- - man
71- - nmap
72- - npm
73- - pip
74- - pipenv
75- - pyenv
76- - pylint
77- - python
78- - rsync
79- - sudo
80- - systemd
81- - ubuntu
82- - virtualenv
83- - vscode
You can’t perform that action at this time.
0 commit comments