mirror of
https://github.com/atom/atom.git
synced 2026-01-23 22:08:08 -05:00
9 lines
196 B
CoffeeScript
9 lines
196 B
CoffeeScript
fs = require 'fs'
|
|
|
|
module.exports =
|
|
class Settings
|
|
constructor: ->
|
|
atom.on 'window:load', ->
|
|
if fs.isFile "~/.atomicity/settings.coffee"
|
|
require "~/.atomicity/settings.coffee"
|