Giter Site home page Giter Site logo

Comments (10)

gabrielelanaro avatar gabrielelanaro commented on May 18, 2024

I confirm this bug on my system

from emacs-starter-kit.

gtoast avatar gtoast commented on May 18, 2024

Thirded. Also color-theme is now available in ELPA so it can be taken out of the elpa-to-submit folder.

from emacs-starter-kit.

skwrl avatar skwrl commented on May 18, 2024

Are you sure ? I get this error: "Package `color-theme-6.6.0' is unavailable" when trying to install any color theme from elpa. I also noticed that color-theme.el in elpa-to-submit is an older 6.5.2 version.

Color-theme not working seems to be related to it being currently located in loaddefs.el but commented off, and missing from starter-kit-misc.el where is should be mentioned according to documentation.

from emacs-starter-kit.

skwrl avatar skwrl commented on May 18, 2024

I got color-theme to work in debian sid by copying color-theme-library.el and color-theme.el provided by debian's emacs-goodies-el package into the starter-kit elpa-to-submit directory and executing M-x regen-autoloads and M-x color-theme-select.

from emacs-starter-kit.

namukang avatar namukang commented on May 18, 2024

I wrote a blog post explaining how to get around this issue: http://blog.dskang.com/2011/05/14/fixing-the-color-theme-problem-with-the-emacs-starter-kit/

from emacs-starter-kit.

MortalCatalyst avatar MortalCatalyst commented on May 18, 2024

Interesting yes I cannot get the color theme working. On top of that I looked at dskang's workaround but I have never had a "user.el" file on the three installs I have used emacs-starter-kit with on win7 fedora & now debian. My user file appears to be custom.el

(setq autoload-file (concat dotfiles-dir "loaddefs.el"))
(setq package-user-dir (concat dotfiles-dir "elpa"))
(setq custom-file (concat dotfiles-dir "custom.el")

from emacs-starter-kit.

namukang avatar namukang commented on May 18, 2024

fiebber: user.el should be your-username.el, not the literal "user.el"
If you look at the bottom of init.el, you'll see that esk loads a file named user.el, user being your actual username.

;; You can keep system- or user-specific customizations here
(setq system-specific-config (concat dotfiles-dir system-name ".el")
      user-specific-config (concat dotfiles-dir user-login-name ".el")
      user-specific-dir (concat dotfiles-dir user-login-name))
(add-to-list 'load-path user-specific-dir)

(if (file-exists-p system-specific-config) (load system-specific-config))
(if (file-exists-p user-specific-dir)
  (mapc #'load (directory-files user-specific-dir nil ".*el$")))
(if (file-exists-p user-specific-config) (load user-specific-config))

from emacs-starter-kit.

MortalCatalyst avatar MortalCatalyst commented on May 18, 2024

On Fri, Sep 2, 2011 at 12:59 AM, dskang
[email protected]
wrote:

fiebber: user.el should be your-username.el, not the literal "user.el"
If you look at the bottom of init.el, you'll see that esk loads a file named user.el, user being your actual username.

Yes I understand but my user name is Sayth but there is no sayth.el
file. On my Fedora box I also never had a sayth.el. It's not
automatically created for me so should I create a file called that, I
have just been attempting to edit custom.el

Sayth

from emacs-starter-kit.

namukang avatar namukang commented on May 18, 2024

I'm moving this conversation offline as this isn't pertinent to this issue thread.

from emacs-starter-kit.

technomancy avatar technomancy commented on May 18, 2024

Version 2 of the starter kit uses these themes straight off marmalade. I believe the autoloads are still screwed up, but this will need to be fixed upstream.

from emacs-starter-kit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.