Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
development:linux:fish [2020/02/27 14:35]
kalenpw [Fish]
development:linux:fish [2021/06/29 15:06] (current)
kalenpw
Line 1: Line 1:
 ====== Fish ====== ====== Fish ======
-think like fish more than zsh, but still undecidedFish's incompatiblity copy pasting bash syntax can be annoying+can't remember why now, but at some point tried fish and zsh on Mac and found fish works better there 
 + 
 +---- 
 +===== Aliases ===== 
 +Aliases are created by simply creating a file in ''~/.config/fish/functins'' 
 + 
 +Example **mkcd** 
 +<code fish> 
 +function mkcd 
 +    mkdir -p $argv 
 +    and cd $argv 
 +end 
 +</code> 
 + 
 +or you can use more typical alias syntax 
 +<code> 
 +alias p3="python3" 
 +funcsave p3 
 +</code> 
 ---- ----
 ===== Installation ===== ===== Installation =====
Line 9: Line 28:
 </code> </code>
  
 +----
 ===== OMF Themes ===== ===== OMF Themes =====
 <code bash> <code bash>
Line 17: Line 37:
 omf theme robbyrussell omf theme robbyrussell
 </code> </code>
 +----
 +
 +