All Projects → abhigenie92 → Zsh_to_fish

abhigenie92 / Zsh_to_fish

How to make zsh like fish?

Projects that are alternatives of or similar to Zsh to fish

Starship
☄🌌️ The minimal, blazing-fast, and infinitely customizable prompt for any shell!
Stars: ✭ 20,504 (+21947.31%)
Mutual labels:  zsh, fish, oh-my-zsh
Honukai Iterm Zsh
Honukai theme and colors for Oh My ZSH and iTerm
Stars: ✭ 1,034 (+1011.83%)
Mutual labels:  zsh, oh-my-zsh
Jump
Jump helps you navigate faster by learning your habits. ✌️
Stars: ✭ 1,024 (+1001.08%)
Mutual labels:  zsh, fish
Dotfiles
🏠
Stars: ✭ 60 (-35.48%)
Mutual labels:  zsh, fish
Zsh History To Fish
Bring your ZSH history to Fish shell.
Stars: ✭ 23 (-75.27%)
Mutual labels:  zsh, fish
Iterm Tab Color Oh My Zsh
Oh My Zsh plugin for setting iTerm2's custom tab colors
Stars: ✭ 21 (-77.42%)
Mutual labels:  zsh, oh-my-zsh
Dotfiles
Get started with your own dotfiles.
Stars: ✭ 1,094 (+1076.34%)
Mutual labels:  zsh, oh-my-zsh
Awesome Dotfiles
A curated list of dotfiles resources.
Stars: ✭ 6,295 (+6668.82%)
Mutual labels:  zsh, fish
Dotfiles
What tools and plugins I use for web development?
Stars: ✭ 73 (-21.51%)
Mutual labels:  zsh, oh-my-zsh
Lambda Gitster
oh-my-zsh theme
Stars: ✭ 74 (-20.43%)
Mutual labels:  zsh, oh-my-zsh
Castle Winbuntu
Homesick Castle for use on WSL.
Stars: ✭ 87 (-6.45%)
Mutual labels:  zsh, oh-my-zsh
My Zsh Config
My custom Oh My Zsh configuration.
Stars: ✭ 5 (-94.62%)
Mutual labels:  zsh, oh-my-zsh
Pure
Pretty, minimal, and fast prompt for Fish from Zsh.
Stars: ✭ 740 (+695.7%)
Mutual labels:  zsh, fish
Kube Aliases
Kubernetes Aliases and Bash Functions
Stars: ✭ 40 (-56.99%)
Mutual labels:  zsh, oh-my-zsh
Dotfiles
Dotfiles for all :D
Stars: ✭ 700 (+652.69%)
Mutual labels:  zsh, oh-my-zsh
Zsh Symfony Completion
(Oh My) ZSH symfony/console Completion Plugin
Stars: ✭ 50 (-46.24%)
Mutual labels:  zsh, oh-my-zsh
Pi
A minimalist zsh theme with git status decorations
Stars: ✭ 76 (-18.28%)
Mutual labels:  zsh, oh-my-zsh
Autocomplete
Autocomplete for terminals on MacOS
Stars: ✭ 569 (+511.83%)
Mutual labels:  zsh, fish
Powerline Shell
A beautiful and useful prompt for your shell
Stars: ✭ 5,743 (+6075.27%)
Mutual labels:  zsh, fish
Cgitc
Close Git Combat
Stars: ✭ 62 (-33.33%)
Mutual labels:  zsh, fish

zsh_to_fish

How to make zsh like fish?

  1. Install oh-my-zsh
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
  1. Clone necessary plugins.
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-history-substring-search
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
  1. Add plugins to ~/.zshrc as
plugins = ( [plugins...] zsh-autosuggestions history-substring-search zsh-syntax-highlighting)

Note: make sure zsh-syntax-highlighting is the last one in the above list.

  1. Fix background theme issues(, not necessary depends on your theme.) Add the following line to your ~/.zshrc.
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=white'
  1. Restart zsh
source ~/.zshrc
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].