DEV Community

Discussion on: What are your CLI go to commands and aliases?

Collapse
 
vonheikemen profile image
Heiker • Edited
alias npr='pnpm run'

alias vi-s='nvim -S Session.vim'

alias pomd='tmux new-session -A -D -s pomodoro'
alias pmd-start='pomd gone -e "$HOME/pmd-timer.sh"'

alias dcc-up='docker-compose up -d'
alias dcc-down='docker-compose down'

npr: Run Node scripts in package.json
vi-s: As in Vim session to resume my work on a project using neovim.
pomd: Starts a tmux session named pomodoro or creates one if it doesn't. I used it to track the time on my working session.
pmd-start: Is what start the working session using this handy tool.
dcc-up: Starts docker compose in detach mode.
dcc-down: Stops docker compose.

Another handy tool for searching that I recommend is fzf.

ripgrep + fzf + Ctrl-R to search is the bee's knees.

Collapse
 
ballpointcarrot profile image
Christopher Kruse • Edited

Awesome find with gone. I'm gonna have to add that to my arsenal (no more browser tab pomodoro!)