;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; This is a .emacs file with everything set up for use in CSCI-6090. ; Use as is, or add the contents to your existing .emacs file. A few ; things, like the font and color setup, are a matter of taste, so ; change them if you like. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Don't print out all that stuff at Emacs startup. (setq inhibit-startup-message t) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; These are extremely handy to have: (global-set-key "\C-h" 'delete-backward-char) (global-set-key "\C-xc" 'compile) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Use maximum syntax coloring (cond ((fboundp 'global-font-lock-mode) (global-font-lock-mode t) (setq font-lock-maximum-decoration t))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Optional (delete or change if you don't like them): (set-background-color "LemonChiffon1") (set-foreground-color "navy") (set-cursor-color "orangered") (set-default-font "10x20") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Use the Bash shell --- change this to another shell if you prefer. (setq explicit-shell-file-name "bash") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Always start a shell ---- always! (shell)