My .emacs file
Be sure to install color-theme in /usr/local/share/emacs/site-lisp
or better yet, do a apt-get install emacs-goodies-el
;;Set the color theme
(require 'color-theme)
;;(color-theme-initialize) <-I don't need this on newer versions and it will give an error.
(color-theme-euphoria)
;;Ido
(require 'ido)
(ido-mode t)
(setq ido-enable-flex-matching t)
;; Dont show the GNU splash screen
(setq inhibit-startup-message t)
;;Emacs Server
(server-start)
;;tramp
(require 'tramp)
(setq tramp-default-method "ssh")
(setq tramp-debug-buffer t)
;;Enable /sudo:ssh-host:file-on-ssh-host in tramp.
(add-to-list 'tramp-default-proxies-alist '(".*" "\\`root\\'" "/ssh:%h:"))
;;Unix newlines
(prefer-coding-system 'latin-1-unix)
; Puts the file name and computer title on the top of the screen.
(set-default 'frame-title-format (list "" "emacs" "@" (getenv "HOST") " : %f" ))
; Keep the font size 9.5 points tall
(set-face-attribute 'default nil :height 95)
;Move the scroll bar
(set-scroll-bar-mode 'right)