0(global-font-lock-mode t) ; always highlight source code (blink-cursor-mode -1) ; make cursor not blink (setq-default indent-tabs-mode nil) ; use 8 spaces instead of 1 tab (setq require-final-newline t) ; make sure all files end in \n (setq case-fold-search t) ; search is case-insensitive ;(if window-system ; (setq mouse-wheel-mode t)) ; enable mouse wheel in graphical mode (setq c-basic-offset 4) ; make indent size 4 spaces in C (global-set-key [(meta g)] 'goto-line) ; bind M-g to the goto-line command (show-paren-mode t) (transient-mark-mode t) (set-background-color "dark olive green") (set-foreground-color "green yellow") (setq inhibit-startup-message t) (fset 'yes-or-no-p 'y-or-n-p)