Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
mmake
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Sep 10, 2017
1 parent 855b6a7 commit f4b90e7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,12 @@ For Linux:

For both Linux and macOS:

- `diff-so-fancy`: better git difs (you'll need to run `dot_update` to apply it);
- `fzf`: fuzzy finder, used in `,t` on vim, for example;
- `exa`: for better `ls`.
- [`diff-so-fancy`](https://github.com/so-fancy/diff-so-fancy):
better git difs (you'll need to run `dot_update` to apply it);
- [`fzf`](https://github.com/junegunn/fzf):
fuzzy finder, used in `,t` on vim, for example;
- [`exa`](https://the.exa.website/): for better `ls`;
- [`mmake`](https://github.com/tj/mmake): a modern `make`.

### macOS defaults

Expand Down
5 changes: 5 additions & 0 deletions system/aliases.zsh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/sh
# modern make
if which mmake >/dev/null 2>&2; then
alias make='mmake'
fi

# exa is a better ls tool
if which exa >/dev/null 2>&1; then
alias ls='exa'
alias l='exa -la --git'
Expand Down

0 comments on commit f4b90e7

Please sign in to comment.