I've started to use emacs (about few days). Also I read this topic: Color themes are strange/incorrect in terminal emulator but I still have issues.
What I did:
- export TERM="xterm-256color"
- Download and successfully installed color-theme package
- Download and successfully (I think) installed solarized theme from https://github.com/sellout/emacs-color-theme-solarized.git
updated init.el:
;;; ============= SOLARIZED ================ (add-to-list 'load-path "~/.emacs.d/color-theme") (add-to-list 'load-path "~/.emacs.d/color-theme/themes") (require 'color-theme) (color-theme-initialize) (setq color-theme-is-global t) (add-to-list 'load-path "~/.emacs.d/emacs-color-theme-solarized") (require 'color-theme-solarized) (setq solarized-termcolors 256) (color-theme-solarized-dark)
OS: Debian/KDE4.7/Konsole
Some color are wrong: 1. include 2. numbers 3. def 4. quotes "
Why this theme displays wrong?