I find it hard to sort through all the messages in the R frame(?) in emacs, and I was wondering if it'll be easy to change the colours so that it looks more like the R GUI.
Thanks
I find it hard to sort through all the messages in the R frame(?) in emacs, and I was wondering if it'll be easy to change the colours so that it looks more like the R GUI.
Thanks
Sure, I use
(set-background-color "gray10")
(set-foreground-color "wheat")
(set-cursor-color "wheat")
(set-mouse-color "wheat")
(set-face-background 'default "black")
(set-frame-font "Bitstream Vera Sans Mono-10") ;; you may not have that font
in ~/.emacs
(or rather a file source from it). These colors work well for numerous programming languages, and in particularly R, C/C++, SQL, shell scripts, ... You can probably adapt these at will to suit your preference (here the R GUI).
See the Emacs Wiki for countless alternatives.