Skip to content
Paul Wisl edited this page Jul 3, 2023 · 2 revisions

bashprofile

# Run ms VSCode from terminal
# https://stackoverflow.com/questions/30065227/run-open-vscode-from-mac-terminal
code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}

#open /Applications/IntelliJ\ IDEA.app/
# https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html#c668f7d8
idea () { open -n /Applications/IntelliJ\ IDEA.app/ --args $* ;}

bashrc

#alias ll='ls -l'
# brew i exa
# https://the.exa.website
alias ll='exa -l --time-style=long-iso --group-directories-first'
Clone this wiki locally