Last active
October 20, 2020 12:05
-
-
Save hydroid7/2b290588bd11f029e8e1baa3250cf86a to your computer and use it in GitHub Desktop.
Multiple Project Environments for the Atom Editor without using the portable mode.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# So you've read this: https://github.com/atom/atom/pull/8442 but you don't want to use the Atom Portable version. | |
# The workaround is to alias the atom command :) | |
# Put this into your ~/.bash_aliases | |
alias atom-local='ATOM_HOME=$PWD/.atom atom $PWD' | |
# Starting Atom with the provided command above each directory conatains its own styles, plugins, etc. | |
# This way you can use Juno when you're working with Julia and use your standard js/vue/react plugins | |
# when doing some frontend development. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment