fish: conf.d: Add some abbreviations for cabal

Taken from https://vrom911.github.io/blog/haskell-aliases.
This commit is contained in:
Sanchayan Maity 2023-05-17 19:34:15 +05:30
parent 572a54d9fd
commit f37e10c68c
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
abbr cbench 'cabal bench --enable-benchmarks'
abbr cbuild 'cabal build --write-ghc-environment-files=always'
abbr cclean 'cabal clean'
abbr cdoc 'cabal haddock --enable-documentation'
abbr cinstall 'cabal install --installdir=~/.local/bin --overwrite-policy=always --install-method=copy'
abbr crun 'cabal run'
abbr crepl 'cabal repl --build-depends pretty-simple'
abbr ctest 'cabal test --enable-tests --test-show-details=direct'
abbr cupdate 'cabal update'