This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ==== STUFF FOR THE FORGE AGENT ==== | |
| forges() { | |
| echo "spawning subshell with forge agent..." | |
| _FORGE_INIT=1 zsh | |
| } | |
| if [[ -n "$_FORGE_INIT" ]]; then | |
| unset _FORGE_INIT | |
| eval "$(forge zsh plugin)" | |
| eval "$(forge zsh theme)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Set the prompt to a lambda. | |
| -- :set prompt "λ " | |
| -- Set the returning of type information on it. | |
| :set +t | |
| -- Collect evaluation time. | |
| :set +s | |
| -- Collect type information after loading modules. | |
| -- Set the editor from which you can edit in ghci. | |
| :set editor vim |