-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Way to manage local config #25
Comments
Yeah, this is a good question. I think candidates are:
|
I propose being able to configure the project pane being on the left/right side as well. |
i generally want to hide it... |
I hide it too On Tue, Jul 14, 2015 at 11:16 AM, Aaron Jensen [email protected]
|
@radamant I just added a key binding for it because cmd-\ didn't work for me... (it's ctrl-- (dash)) |
So this will work for a fs = require 'fs'
path = require 'path'
CSON = require path.join(atom.getLoadSettings().resourcePath, '/node_modules/season')
personalPath = path.join(path.dirname(atom.config.getUserConfigPath()), "personal.cson")
if fs.existsSync(personalPath)
config = CSON.readFileSync(personalPath)
for own scopeSelector, scopeConfig of config
for own namespace, namespaceConfig of scopeConfig
for own key, value of namespaceConfig
atom.config.set "#{namespace}.#{key}", value, scopeSelector But it has a problem... it writes the changes to |
Is there a way for people to have some local config that doesn't need to be a shared setting and won't mess with git tracking?
I am specifically wondering about font size, which is stored in the config but is not a setting that needs to be shared.
The text was updated successfully, but these errors were encountered: