Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
development:linux:fish [2020/03/02 15:22] kalenpw |
development:linux:fish [2021/06/29 15:06] (current) kalenpw |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Fish ====== | ====== Fish ====== | ||
- | I think I like fish more than zsh, but still undecided. Not being able to copy paste commands online intended for bash can be annoying but other than that it is quite good and has nice defaults. | + | 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 10: | Line 28: | ||
</ | </ | ||
+ | ---- | ||
===== OMF Themes ===== | ===== OMF Themes ===== | ||
<code bash> | <code bash> | ||
Line 18: | Line 37: | ||
omf theme robbyrussell | omf theme robbyrussell | ||
</ | </ | ||
- | |||
---- | ---- | ||
- | ===== Aliases ===== | ||
- | Aliases are created by simply creating a file in '' | ||
- | Example **mkcd** | + | |
- | <code fish> | + | |
- | function mkcd | + | |
- | mkdir -p $argv | + | |
- | and cd $argv | + | |
- | end | + | |
- | </ | + |