The following code contains some of the tweaks I have added to the configuration of Emacs on most of my boxes. Just copy and paste the code (or parts of it) to ~./emacs. If you don't have .emacs file in your home directory, you can create it with any editor you like (you might even like to use vi for the task!). In openSUSE the tweaks can also be included in ~/.gnu-emacs-custom.
Please suggest some more tweaks in the comment box!
;; == disable splash screen & toolbar to save screen space ==
(setq inhibit-splash-screen t)
(tool-bar-mode -1)
;; == disable menu bar as well ==
;; (menu-bar-mode -1)
;; == use text mode as default mode and use longlines-mode with text files ==
(setq default-major-mode 'text-mode)
(add-hook 'text-mode-hook 'longlines-mode)
;;; == use org-mode for .org files ==
(add-to-list 'load-path (expand-file-name "~/git/org-mode/lisp"))
(add-to-list 'auto-mode-alist '("\\.\\(org\\)$" . org-mode))
(require 'org-install)
;; == enable mouse wheel ==
(mouse-wheel-mode t)
;; == save backup files in ~/.emacs-backups
(setq make-backup-files t)
(setq version-control t)
(setq backup-directory-alist (quote ((".*" . "~/.emacs-backups/"))))
;; === pretty colors on blackground ==
(set-background-color "black")
(set-foreground-color "green")
(set-cursor-color "yellow")
;;== count words with Esc x wc
(defun wc ()
(interactive)
(message "Word count: %s" (how-many "\\w+" (point-min) (point-max))))