The intro Every Emacs user that I know changes the hell out of the look and feel of their UI. I am no different here. The following is a list of the function, that use in my module timu-ui.el. Of course feel free to browse my .emacs.d for context ;). The functions timu-ui-with-face A very simple function to propertize a string with face property lists similar to set-face-attribute. (defun timu-ui-with-face (str &rest face-plist)"Propertize STR with FACE-PLIST."(propertize str 'face face-plist...