Skip to content

Instantly share code, notes, and snippets.

View Trivoz's full-sized avatar
🧬
Experimenting with Helix

Trivoz

🧬
Experimenting with Helix
  • Student
  • Sydney, Australia
  • 03:45 (UTC +10:00)
View GitHub Profile
@Trivoz
Trivoz / aliases
Created February 6, 2024 04:47
My bash aliases (and zsh aliases since it works for that as well)
# cargo
alias c=cargo
alias cr='cargo run'
alias cf='cargo fmt'
alias cn='cargo new'
alias cc='cargo check'
alias ct='cargo test'
alias ca='cargo add'
alias cdo='cargo d --open'
alias cb='cargo build'
@Trivoz
Trivoz / bashrc
Created February 6, 2024 04:59
My bash rc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac