(custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(case-fold-search t) '(completion-ignored-extensions (quote ("CVS/" ".o" "~" ".bin" ".lbin" ".fasl" ".ufsl" ".a" ".ln" ".blg" ".bbl" ".elc" ".lof" ".glo" ".idx" ".lot" ".dvi" ".fmt" ".tfm" ".pdf" ".class" ".fas" ".lib" ".x86f" ".sparcf" ".lo" ".la" ".toc" ".pyc" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) '(current-language-environment "utf-8") '(cvs-dired-use-hook (quote always)) '(default-input-method "latin-1-prefix") '(delete-selection-mode nil nil (delsel)) '(display-time-default-load-average nil) '(display-time-mail-file (quote none)) '(ediff-prefer-iconified-control-frame t) '(ediff-split-window-function (quote split-window-horizontally)) '(ediff-window-setup-function (quote ediff-setup-windows-plain)) '(global-font-lock-mode t nil (font-lock)) '(inhibit-startup-screen t) '(revert-without-query (quote ("*.log"))) '(save-place t nil (saveplace)) '(scroll-bar-mode (quote right)) '(show-paren-mode t nil (paren)) '(text-mode-hook (quote (turn-off-auto-fill text-mode-hook-identify))) '(transient-mark-mode t) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(mode-line-inactive ((default (:inherit mode-line)) (((class color) (min-colors 88) (background light)) (:background "black" :foreground "LightSteelBlue4" :box (:line-width -1 :color "Gray30") :weight light)))))) ;;General: ;;I want man to show me all manpages available for a specific topic: (setq Man-switches "-a") ;;I want no toolbar: ;;(tool-bar-mode 0) ;;rather do this in .Xdefaults ;;I want mouse wheel scrolling: (mouse-wheel-mode t) ;;I want all backupfiles (*~) stored in one directory: (setq backup-directory-alist '(("." . "~/.emacs_backup"))) ;;I want all semantic files stored in one directory: (setq semanticdb-default-save-directory "~/.emacs_semantic") ;;I want lines and columns displayed in the modeline: (setq line-number-mode t) (setq column-number-mode t) ;;Some global keybindings: (define-key esc-map "n" 'goto-line) (define-key ctl-x-map "\C-r" 'revert-buffer) (define-key ctl-x-map "\C-b" 'buffer-menu) (define-key ctl-x-map "\C-a" 'my-ecb-toggle-windows) (define-key ctl-x-map "t" 'calendar) (windmove-default-keybindings 'meta) (setq ispell-program-name "aspell") (setq ispell-default-dictionary "en_GB") ;;; Local Variables: ;;; mode: emacs-lisp ;;; End: