Differences

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

Link to this comparison view

Next revision
Previous revision
development:linux:fish [2020/02/27 14:34]
kalenpw created
development:linux:fish [2021/06/29 15:06] (current)
kalenpw
Line 1: Line 1:
 ====== Fish ====== ====== Fish ======
 +I can't remember why now, but at some point I 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>
  
 ---- ----
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>
 +----
 +
 +