mirror of
https://github.com/atom/atom.git
synced 2026-01-25 23:08:18 -05:00
13 lines
261 B
CoffeeScript
13 lines
261 B
CoffeeScript
fs = require 'fs'
|
|
|
|
module.exports =
|
|
class Dotatom
|
|
constructor: ->
|
|
try
|
|
require "~/.atom"
|
|
catch e
|
|
console.log 'No ~/.atom module found.'
|
|
|
|
atom.settings.load "~/.atom/settings.coffee"
|
|
atom.keybinder.load "~/.atom/key-bindings.coffee"
|