Skip to content

Instantly share code, notes, and snippets.

@SteveDevOps
Last active December 28, 2023 22:44
Show Gist options
  • Save SteveDevOps/269e47c354e523a395d34de34353e566 to your computer and use it in GitHub Desktop.
Save SteveDevOps/269e47c354e523a395d34de34353e566 to your computer and use it in GitHub Desktop.

Revisions

  1. Steve Duys revised this gist Jun 1, 2022. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions fav-rust-utils.md
    Original file line number Diff line number Diff line change
    @@ -34,6 +34,7 @@ https://www.oreilly.com/library/view/rust-programming-by/9781788390637/e07dc768-
    - repo: https://github.com/burntsushi/ripgrep

    ### starship (I prefer to compile my favorite shell prompt!)
    - info: https://starship.rs/
    - cargo install starship
    - driven by ~/.zshrc and ~/.config/starship.toml
    - my mac config: https://gist.github.com/SteveDevOps/54abe46ad5c0ff3f7b5cf178be0023ba
  2. Steve Duys revised this gist Jun 1, 2022. 1 changed file with 46 additions and 44 deletions.
    90 changes: 46 additions & 44 deletions fav-rust-utils.md
    Original file line number Diff line number Diff line change
    @@ -8,59 +8,61 @@
    - note on current version I had to switch to rust nightly for mac, wouldn't compile:
    https://www.oreilly.com/library/view/rust-programming-by/9781788390637/e07dc768-de29-482e-804b-0274b4bef418.xhtml

    bat (the new cat)
    cargo install bat
    binary: bat
    repo: https://github.com/sharkdp/bat
    ### bat (the new cat)
    - cargo install bat
    - binary: bat
    - repo: https://github.com/sharkdp/bat

    bottom (cool top replacement)
    cargo install bottom
    binary: btm
    repo: https://github.com/clementtsang/bottom
    ### bottom (cool top replacement)
    - cargo install bottom
    - binary: btm
    - repo: https://github.com/clementtsang/bottom

    fd-find (fd is a simple, fast and user-friendly alternative to find)
    cargo install fd-find
    binary: fd
    repo: https://github.com/sharkdp/fd
    ### fd-find (fd is a simple, fast and user-friendly alternative to find)
    - cargo install fd-find
    - binary: fd
    - repo: https://github.com/sharkdp/fd

    gitui (wha?? I can get useful repo info and I don't have to go to repo gui?)
    cargo install gitui
    binary: gitui
    repo: https://github.com/extrawurst/gitui
    ### gitui (wha?? I can get useful repo info and I don't have to go to repo gui?)
    - cargo install gitui
    - binary: gitui
    - repo: https://github.com/extrawurst/gitui

    ripgrep (fly grep fly..)
    cargo install ripgrep
    binary: rg
    repo: https://github.com/burntsushi/ripgrep
    ### ripgrep (fly grep fly..)
    - cargo install ripgrep
    - binary: rg
    - repo: https://github.com/burntsushi/ripgrep

    starship (I prefer to compile my favorite shell prompt!)
    cargo install starship
    driven by ~/.zshrc and ~/.config/starship.toml
    my mac config: https://gist.github.com/SteveDevOps/54abe46ad5c0ff3f7b5cf178be0023ba
    my mac toml:
    my popos config:
    ### starship (I prefer to compile my favorite shell prompt!)
    - cargo install starship
    - driven by ~/.zshrc and ~/.config/starship.toml
    - my mac config: https://gist.github.com/SteveDevOps/54abe46ad5c0ff3f7b5cf178be0023ba
    - my mac starship.toml:
    - my popos config:
    - my popos starship.toml:
    - firacode font set: https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip

    xcp (wha?? cp with progress bar!? OMG!)
    cargo install xcp
    binary: xcp
    repo: https://github.com/tarka/xcp
    ### xcp (wha?? cp with progress bar!? OMG!)
    - cargo install xcp
    - binary: xcp
    - repo: https://github.com/tarka/xcp

    zoxide (I'm deep in a dir structure and I need to cd to another deep dir structure.. wtf was that path again???)
    cargo install zoxide
    driven by ~/.zshrc
    my mac config: https://gist.github.com/SteveDevOps/54abe46ad5c0ff3f7b5cf178be0023ba
    my mac toml:
    my popos config:
    ### zoxide (I'm deep in a dir structure and I need to cd to another deep dir structure.. wtf was that path again???)
    - cargo install zoxide
    - driven by ~/.zshrc
    - my mac config: https://gist.github.com/SteveDevOps/54abe46ad5c0ff3f7b5cf178be0023ba
    - my popos config:


    discover more: https://lib.rs/command-line-utilities
    ### discover more: https://lib.rs/command-line-utilities


    my most needed native tootchain utils:
    cargo-update
    cargo install cargo-update
    cmnd: cargo install-update -a (update everything installed!)
    ### my most needed native tootchain utils:

    carg-cache
    cargo install cargo-cache
    cmnd: cargo cache -a (cleanup and keep things tidy on disk!)
    ### cargo-update
    - cargo install cargo-update
    - cmnd: cargo install-update -a (update everything installed!)

    ### cargo-cache
    - cargo install cargo-cache
    - cmnd: cargo cache -a (cleanup and keep things tidy on disk!)
  3. Steve Duys revised this gist Jun 1, 2022. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions fav-rust-utils.md
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    ###install rust with rustup:
    ### install rust with rustup:
    - https://www.rust-lang.org/tools/install

    ###exa (the new ls)
    ### exa (the new ls)
    - cargo install exa
    - binary: exa
    - repo: https://github.com/ogham/exa
  4. Steve Duys revised this gist Jun 1, 2022. 1 changed file with 7 additions and 7 deletions.
    14 changes: 7 additions & 7 deletions fav-rust-utils.md
    Original file line number Diff line number Diff line change
    @@ -1,11 +1,11 @@
    install rust with rustup:
    https://www.rust-lang.org/tools/install
    ###install rust with rustup:
    - https://www.rust-lang.org/tools/install

    exa (the new ls)
    cargo install exa
    binary: exa
    repo: https://github.com/ogham/exa
    note on current version I had to switch to rust nightly for mac, wouldn't compile:
    ###exa (the new ls)
    - cargo install exa
    - binary: exa
    - repo: https://github.com/ogham/exa
    - note on current version I had to switch to rust nightly for mac, wouldn't compile:
    https://www.oreilly.com/library/view/rust-programming-by/9781788390637/e07dc768-de29-482e-804b-0274b4bef418.xhtml

    bat (the new cat)
  5. Steve Duys created this gist Jun 1, 2022.
    66 changes: 66 additions & 0 deletions fav-rust-utils.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,66 @@
    install rust with rustup:
    https://www.rust-lang.org/tools/install

    exa (the new ls)
    cargo install exa
    binary: exa
    repo: https://github.com/ogham/exa
    note on current version I had to switch to rust nightly for mac, wouldn't compile:
    https://www.oreilly.com/library/view/rust-programming-by/9781788390637/e07dc768-de29-482e-804b-0274b4bef418.xhtml

    bat (the new cat)
    cargo install bat
    binary: bat
    repo: https://github.com/sharkdp/bat

    bottom (cool top replacement)
    cargo install bottom
    binary: btm
    repo: https://github.com/clementtsang/bottom

    fd-find (fd is a simple, fast and user-friendly alternative to find)
    cargo install fd-find
    binary: fd
    repo: https://github.com/sharkdp/fd

    gitui (wha?? I can get useful repo info and I don't have to go to repo gui?)
    cargo install gitui
    binary: gitui
    repo: https://github.com/extrawurst/gitui

    ripgrep (fly grep fly..)
    cargo install ripgrep
    binary: rg
    repo: https://github.com/burntsushi/ripgrep

    starship (I prefer to compile my favorite shell prompt!)
    cargo install starship
    driven by ~/.zshrc and ~/.config/starship.toml
    my mac config: https://gist.github.com/SteveDevOps/54abe46ad5c0ff3f7b5cf178be0023ba
    my mac toml:
    my popos config:

    xcp (wha?? cp with progress bar!? OMG!)
    cargo install xcp
    binary: xcp
    repo: https://github.com/tarka/xcp

    zoxide (I'm deep in a dir structure and I need to cd to another deep dir structure.. wtf was that path again???)
    cargo install zoxide
    driven by ~/.zshrc
    my mac config: https://gist.github.com/SteveDevOps/54abe46ad5c0ff3f7b5cf178be0023ba
    my mac toml:
    my popos config:


    discover more: https://lib.rs/command-line-utilities


    my most needed native tootchain utils:
    cargo-update
    cargo install cargo-update
    cmnd: cargo install-update -a (update everything installed!)

    carg-cache
    cargo install cargo-cache
    cmnd: cargo cache -a (cleanup and keep things tidy on disk!)