;;----------------------------------First Line of File ---------------------- ;;#-*-lisp-*-#; (setq inhibit-startup-message t) (scroll-bar-mode -1) ;;(tool-bar-mode -1) ;; turns off the tool bar at the top of the (tool-bar-mode 1) ;;(menu-bar-mode -1) ;; turns off the menu bar at the top (menu-bar-mode -1) (show-paren-mode t) ;;My favorite colors for reading (set-background-color "navyblue") ;;(set-background-color "black") (set-foreground-color "white") (set-cursor-color "green") ;; This attaches "undo" to the "insert" key You can attach to any key you like (global-set-key [insert] 'undo) ;;---------------------------------Last Line of File-------------------------