Fish is an excellent shell. Its amazing suggestions and simplicity make it the next-gen bash. Nevertheless the traditional virtualenvwrapper and nvm do not work immediately with it. A small extra configuration is required, but it is worth the time since they offer better features such as auto-activation when changing to a project directory.
The project virtual fish is the solution for virtualenvs. The installation guide occasionaly caused some issues, therefore the following installation guide is recommended:
Install fish v2.0+ (1.x won't work, check with the OS repos or fish -version
).
Also make sure that virtualenv is installed.
Then install virtual fish:
pip install virtualfish
Then edit the configuration file (see section below).
The project nvm-fish-wrapper is the solution for nvm. The installation guide has an error, therefore the following installation guide is recommended:
Make sure nvm is installed. Then:
cd ~/.config/fish
git clone git://github.com/passcod/nvm-fish-wrapper.git nvm-wrapper
Then edit the configuration file:
Edit ~/.config/fish/config.fish
. A suggestion is included in separate file below. Description:
- A small greeting prologue displaying OS info
- Ansible: load ansible env setup before loading virtual fish and potentially automatically connecting to a separate virtualenv
- Run virtual fish: as explained by the documentation. Customize the plugins as required.
- Change prompt: there the default documentation was inadequate, see relevant link
- Nvm: source nvm wrapper. Again the default documentation has a mistake there (
source
is bash only). - Fish greeting: a simple function to change the greeting when starting fish. See Suppress or Customize Intro Message in Fish Shell.
Welcome to Linux rodope 3.19.0-51-generic #58-Ubuntu x86_64
11:50:08 up 2:29, 2 users, load average: 0,19, 0,52, 0,66
Now using ansible 2.1.0
Now using vf
Now using node v0.12.10
Now using fish 2.1.1
You attempt things that you do not even plan because of your extreme stupidity.
wtower@rodope ~>
Bash:
chsh -s `which fish`
Fish:
chsh -s (which fish)
May require restart.