fisher
zsh-autosuggestions
fisher | zsh-autosuggestions | |
---|---|---|
36 | 146 | |
8,451 | 33,352 | |
1.2% | 0.8% | |
4.1 | 4.3 | |
10 months ago | 15 days ago | |
Shell | Shell | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
fisher
-
Pytest Fish shell autocompletion
Install with Fisher:
-
Instalar NodeJS en Linux y Windows
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher
-
(Youtube blogpost) Building Tree Link app with Svelte and Tailwind CSS
Fisher - Plugin manager
-
Oh My Zsh
You've got to install Fisher, then get z, sponge and a few others from the awsm.fish list.
Then you get trapped by the utility and struggle when you land on some remote server's bash shell.
https://github.com/jorgebucaran/fisher
https://github.com/jorgebucaran/awsm.fish#readme
-
fish-shell: the user-friendly command-line shell
If you're running a script, you can use edc/bass to run it from a fish shell. Fisher is one of the first things I install after fish, then bass, z and a few other helper plugins.
https://github.com/edc/bass
https://github.com/jorgebucaran/fisher
-
Integrating Python's Virtualenv with Fish shell Without Overcomplicated Frameworks
As a minimalist plugin manager for Fish, I recommend fisher. I've created a plugin that can be installed via fisher and integrated into any Fish environment. If there are any reasons why you don't want to use Fisher, you can just copy-paste conf.d/autoenv.fish file to your ~/.config/fish/conf.d directory.
-
Top Productivity CLI Tools I Use on Linux
Fish is a acronyn for friendly interactive shell. It is a smart and user friendly shell for Unix-like operating systems like Linux. There are a lot of features that make it stand out from other shells like bash. It has a lot of features like autosuggestions, syntax highlighting, tab completions and a lot more. You can read more about it in the documentation. I have been using it for a while now and I it configured to my liking. In terms of plugins I use fisher to manage my plugins. I have a couple of plugins that I use on a daily basis. I have listed them below:
-
Hey, I'm new to Fish shell!
stay away from Oh-My-Fish - you probably donβt need it - Fish is pretty awesome out of the box, and if you do want a plugin or two Fisher is a much better route.
- A good resource to learn Linux and the terminal?
-
What is the difference between OhMyFish and Starship?
Agreed. I personally like Fisher (https://github.com/jorgebucaran/fisher) with this theme based on Powerlevel10k (https://github.com/IlanCosman/tide)
zsh-autosuggestions
-
Install zsh with autosuggestion in amazon linux
#!/bin/sh # Install zsh sudo yum install git zsh -y sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # Install zsh-syntax-highlighting plugin git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting # Install zsh-autosuggestions plugin git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions echo "plugins=(zsh-syntax-highlighting zsh-autosuggestions)" >> ~/.zshrc echo "source ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc echo "ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=blue'" >> ~/.zshrc echo "ZSH_AUTOSUGGEST_USE_ASYNC=true" >> ~/.zshrc source ~/.zshrc echo "Installation of zsh and Oh My Zsh with suggestion plugin complete!"
-
Why your terminal is boring and what to use instead
# zsh autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions # add to your .zshrc source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
-
Supercharge Your Mac Terminal: A Step-by-Step Guide to iTerm2, Oh My Zsh & Powerlevel10k
# 1. Backup existing configuration cp ~/.zshrc ~/.zshrc.backup 2>/dev/null || echo "No existing ~/.zshrc" # 2. Install Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # 3. Install iTerm2 brew install --cask iterm2 # 4. Install Oh My Zsh sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" # 5. Install Powerlevel10k theme git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k sed -i '' 's/ZSH_THEME="robbyrussell"/ZSH_THEME="powerlevel10k\/powerlevel10k"/' ~/.zshrc # 6. Install essential plugins git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting brew install autojump # 7. Restart terminal or reload configuration source ~/.zshrc
-
Shunpo: Minimalist bash tool to make directory navigation a little bit faster
I have a utility called ZSH Autosuggestions, and it's probably one of the most useful things on my computer. It shows you a sort of preview of the most recent command you typed that matches the prefix of the current command you are typing. It's basically an automatic tool that bookmarks commands based on usage. I think the best bookmark systems are ones which simply track your entire history and suggest relevant pages based on it. That way the process of bookmark creation is automatic and you don't have to predict what you will need to access frequently.
https://github.com/zsh-users/zsh-autosuggestions?tab=readme-...
-
Make the zsh Prompt Go Faster
zsh can compile zsh scripts using the builtin zcompile into wordcode. This will have the effect of having faster parsing. The way we use this to get a faster prompt is to explicitly ask zsh to compile certain chunky plugins(think your syntax highlighters and completion plugins) into wordcode.
-
Customize iTerm
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
-
Finding Terminal Utopia
This is not intuitive, or efficient, so our first task is fix that using zsh-autosuggestions. zsh-autosuggestions will provide autocomplete suggestions from your history (and other locations) as you type, simply press the right arrow key, or use the end-of-line keyboard shortcut (e.g. ctrl+e) to accept the suggestion. If you only want part of a suggestion, you can use the forward-word keyboard shortcut, which is option+right arrow or alt+right arrow which will complete only up to the end of the next word and continue providing suggestions from there.
-
iTerm2 3.5.0
I'm using the zsh-autosuggestion plugin (so not a feature of the terminal but of the shell):
https://github.com/zsh-users/zsh-autosuggestions
-
Zsh + Oh My Zsh
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions
-
Ditch Your Boring Terminal and Make it More Useful
Do you like typing? I guess not. We can have some autosuggestion inside our terminal by using a plugin named zsh-autosuggestions.
What are some alternatives?
oh-my-fish - The Fish Shell Framework
zsh-autocomplete - π€ Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion.
bass - Make Bash utilities usable in Fish shell
zsh-completions - Additional completion definitions for Zsh.
fzf-fish-integration - ππ Fzf plugin for Fish
oh-my-posh - The most customisable and low-latency cross platform/shell prompt renderer