From a234ed96bd0579fab7e2e76c8b66816aaf74c0ce Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Mon, 16 Sep 2013 08:34:01 -0700 Subject: [PATCH] Remove themes paths from config Themes are now co-located with packages --- src/config.coffee | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/config.coffee b/src/config.coffee index 55d6864e5..b76ac44e8 100644 --- a/src/config.coffee +++ b/src/config.coffee @@ -9,9 +9,7 @@ pathWatcher = require 'pathwatcher' configDirPath = fsUtils.absolute("~/.atom") nodeModulesDirPath = path.join(resourcePath, "node_modules") -bundledThemesDirPath = path.join(resourcePath, "themes") bundledKeymapsDirPath = path.join(resourcePath, "keymaps") -userThemesDirPath = path.join(configDirPath, "themes") userPackagesDirPath = path.join(configDirPath, "packages") userPackageDirPaths = [userPackagesDirPath] userPackageDirPaths.unshift(path.join(configDirPath, "dev", "packages")) if atom.getLoadSettings().devMode @@ -39,7 +37,6 @@ class Config _.extend @prototype, EventEmitter configDirPath: configDirPath - themeDirPaths: [userThemesDirPath, bundledThemesDirPath] bundledPackageDirPaths: [nodeModulesDirPath] bundledKeymapsDirPath: bundledKeymapsDirPath nodeModulesDirPath: nodeModulesDirPath