Differences
This shows you the differences between two versions of the page.
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 '' | ||
+ | |||
+ | Example **mkcd** | ||
+ | <code fish> | ||
+ | function mkcd | ||
+ | mkdir -p $argv | ||
+ | and cd $argv | ||
+ | end | ||
+ | </ | ||
+ | |||
+ | or you can use more typical alias syntax | ||
+ | < | ||
+ | alias p3=" | ||
+ | funcsave p3 | ||
+ | </ | ||
---- | ---- | ||
Line 9: | Line 28: | ||
</ | </ | ||
+ | ---- | ||
===== OMF Themes ===== | ===== OMF Themes ===== | ||
<code bash> | <code bash> | ||
Line 17: | Line 37: | ||
omf theme robbyrussell | omf theme robbyrussell | ||
</ | </ | ||
+ | ---- | ||
+ | |||
+ |