(setq viper-mode t) ;; I'm an Emacs rebel! (require 'viper) (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. '(default ((t (:inherit nil :stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 90 :width normal :foundry "monospace" :family "monospace"))))) (column-number-mode 1) ;; UI settings (scroll-bar-mode nil) (tool-bar-mode nil) (show-paren-mode t) ;; (mouse-avoidance-mode 'banish) (iswitchb-mode 1) (setq compilation-scroll-output t) (setq backup-inhibited t) ;; misc settings (server-start) ;; Emacs server (setq add-log-mailing-address ;; about me "zack@upsilon.cc") (add-to-list 'load-path ;; local extensions (expand-file-name "~/.emacs.d")) (load "ispell-change-dictionary-hook") (load "zack-hooks") (load "zack-keys") (load "zack-disabled-cmds") (load "zack-automodes") (load "zack-autoload")