Questions tagged [oh-my-fish]

For questions about Oh-My-Fish scripts and packages to extend Fish shell.

Oh-My-Fish is used to install packages which extend or modify the look of your shell.

10 questions
35
votes
4 answers

Fish Shell: How can I customize the colors for the autocomplete feature?

I started using Fish (and oh-my-fish) a couple of weeks ago and one of the things that I find somewhat visually hard is the default background color of the autocomplete options (see the purple background in the image). I tried looking in the Fish…
Roberto S.
  • 1,262
  • 1
  • 14
  • 19
3
votes
1 answer

Missing icons in budspencer theme on fish shell

I'm trying to install the budspencer theme for the fish shell. I install the theme using Oh-My-Fish with command omf install budspencer And although I installed the powerline fonts from https://github.com/powerline/fonts using the provided script…
Shaheen Ghiassy
  • 7,397
  • 3
  • 40
  • 40
1
vote
0 answers

Fish on WSL2 in VSCode adding random letters

I am using fish shell (fish 3.2.2) as my default on ubuntu in wsl2 on my windows laptop. I have also installed oh-my-fish to enable vim keybinds in the terminal (and that is the only config I have added). Without a noticeable pattern, when running…
Alex Scriba
  • 95
  • 1
  • 8
1
vote
1 answer

Ansible - install oh my fish for each fish user

I'm writing a playbook to install 'oh my fish' for all local fish user. I want trigger the install for local fish user (default shell set to /usr/bin/fish) And ONLY if 'omf' is not installed in their home (check the presence ~/.local/share/omf…
LeXaNZ
  • 35
  • 5
1
vote
0 answers

Fish Shell causes Login Loop when is default (Fedora 26)

I have installed a fresh Fedora 26, when I install fish (comes with 2.3.1 but I upgraded to 2.6) and I set it as default shell (chsh -s /usr/local/bin/fish) works as expected... until I restart the PC and I try to login; gdm successfully logs me in,…
IAX
  • 21
  • 5
1
vote
1 answer

How do I change the tab completion's behavior of oh-my-fish?

oh-my-zsh and bash's tab completion In the tab completion of oh-my-zsh and bash, we have typed a command (for example,cut) and we want to a long option (for example,--delimiter) which should have a option's arguments behind it . If we want using…
xiang
  • 1,384
  • 1
  • 12
  • 28
0
votes
2 answers

How to set background default color in fish shell?

Specifically, I want to set the default background color to "Solarized Dark" in my fish shell for Iterm2. Currently, I have to manually change the background every time I start my fish shell using CMD + I: Is there anyway to set this such that the…
Olivia
  • 115
  • 6
0
votes
1 answer

ZSH reverse loookup in the current command

Using Ctrl+R reverse lookup, I have found a long command that I need: scp .oh-my-zsh/custom/themes/robbyrussell_modifiedprompt.zsh-theme pi@192.168.43.220:.oh-my-zsh/custom/themes/robbyrussell_modifiedprompt.zsh-theme but I need to change the ip…
Koikos
  • 162
  • 9
0
votes
3 answers

oh-my-fish `omf: command not found` in WebStorm terminal emulator

I am using WebStorm 2017.1.3 on Fedora 25. I have fish set up as my default shell and installed oh-my-fish so in Terminal I see my git branch and other information by default. omf update runs as expected. In the WebStorm terminal emulator I still…
vekerdyb
  • 1,213
  • 12
  • 26
-2
votes
0 answers

Shell script code can not be executed in fish shell even if I specify shebang

I'm runnning fish shell for a test for a few days. So i decided to use my already shell script programs. All of them are working fine, except for one: mkcd Here is the code: #!/usr/bin/env bash dir=$1 mkdir -p "$dir" cd "$dir" || exit 1 The…
Micael Viana
  • 107
  • 8