Here are a few miscellaneous settings for version 19 Emacs:
(resize-minibuffer-mode 1) (setq resize-minibuffer-mode t)
(setq search-highlight t)
(setq default-frame-alist
'((menu-bar-lines . 1)
(auto-lower . t)
(auto-raise . t)))
; Cursor shapes are defined in
; `/usr/include/X11/cursorfont.h';
; for example, the `target' cursor is number 128;
; the `top_left_arrow' cursor is number 132.
(let ((mpointer (x-get-resource "*mpointer"
"*emacs*mpointer")))
;; If you have not set your mouse pointer
;; then sent it, otherwise leave as is:
(if (eq mpointer nil)
(setq mpointer "132")) ; top_left_arrow
(setq x-pointer-shape (string-to-int mpointer))
(set-mouse-color "white"))
Go to the first, previous, next, last section, table of contents.