jimeh / tomorrow-night-paradise-theme.el

A light-on-dark Emacs theme which is essentially a tweaked version of Chris Kempson's Tomorrow Night Bright theme.
11 stars 3 forks source link

.emacs initialization #1

Open sachdevaprash opened 9 years ago

sachdevaprash commented 9 years ago

When I follow the instructions and write the following in my .emacs file: (require 'tomorrow-night-paradise-theme) (load-theme tomorrow-night-paradise t)

Emacs says symbol's variable as void. In fact, the theme is loaded even without the load-theme command.

albertguedes commented 8 years ago

Me to. I follow the READ.me instructions, save the el theme file in '.emacs.d/themes' . My init file is in '~/.emacs.d/init.el' and i put the content

(add-to-list 'load-path "~/.emacs.d/themes")
;;(require '~/.emacs.d/themes/tomorrow-night-paradise-theme)                                                                               
(load-theme tomorrow-night-paradise-theme t)

then i restart emacs and its show

Warning (initialization): An error occurred while loading `/home/albert/.emacs.d/init.el':

Symbol's value as variable is void: tomorrow-night-paradise-theme

"To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file.  Start Emacs with
the `--debug-init' option to view a complete error backtrace."

The theme work well, but always show this message on start emacs.

hectonit commented 3 years ago

It works fine: (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/") (add-to-list 'load-path "~/.emacs.d/themes/") (load-theme 'tomorrow-night-paradise t)