mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
fix typos
This commit is contained in:
parent
43ae2639fb
commit
95ed695f0b
2 changed files with 14 additions and 3 deletions
|
|
@ -46,7 +46,7 @@ Linux
|
|||
* install some terminal tools
|
||||
|
||||
```(shell)
|
||||
sudo apt install exa autojump thefuck
|
||||
sudo apt install exa autojump thefuck tmux
|
||||
```
|
||||
|
||||
* install [Tilex](https://gnunn1.github.io/tilix-web/)
|
||||
|
|
@ -101,6 +101,13 @@ Common Install Steps
|
|||
REPO=<your_github_id>/ohmyzsh sh -c "$(curl -fsSL <https://raw.githubusercontent.com/fklassen/ohmyzsh/master/tools/install.sh>)"
|
||||
```
|
||||
|
||||
* initialize submodules
|
||||
|
||||
```(shell)
|
||||
cd ~/.oh-my-zsh
|
||||
git submodules update --init
|
||||
```
|
||||
|
||||
* optionally configure by editing '~/.zshrc` (see [Getting Started](https://github.com/ohmyzsh/ohmyzsh/wiki#getting-started))
|
||||
* I personally like to make a symbolic link so I can commit my changes to my forked config
|
||||
|
||||
|
|
|
|||
|
|
@ -134,8 +134,12 @@ export MANPATH="/usr/local/man:/usr/local/ssl/share/man:$MANPATH"
|
|||
ZSH_ALIAS_FINDER_AUTOMATIC=true
|
||||
|
||||
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
||||
source /etc/profile.d/vte.sh
|
||||
if [ -f /etc/profile.d/vte.sh ]; then
|
||||
source /etc/profile.d/vte.sh
|
||||
fi
|
||||
fi
|
||||
|
||||
# comment out if you want to disable Starship and use ZSH_THEME
|
||||
eval "$(starship init zsh)"
|
||||
if [ -f "$HOME/.config/starship.toml" ]; then
|
||||
eval "$(starship init zsh)"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue