I'd like to be able to use different color themes when I'm editing text versus when I'm using a terminal such as ansi-term. (Note: I'm not referring to different color schemes for GUI mode versus terminal mode). Is this possible? In general, is it possible to switch the color scheme on a per-buffer basis rather than global?
Asked
Active
Viewed 263 times
1
face-remap-add-relative
to make faces buffer-local. Please try and distinguish your question so that it is not marked as a duplicate and closed. – lawlist Jun 22 '15 at 21:38face-remap-add-relative
. As a person who uses emacs but isn't particularly interested in hacking it myself, I'd just like to get some information on the topic. – limp_chimp Jun 23 '15 at 07:22'default
face on a buffer-local basis, which is triggered by a major-mode hook -- you can replace that example hook with something liketext-mode-hook
: http://stackoverflow.com/a/28008006/2112489 – lawlist Jun 23 '15 at 07:28