Enable Octave mode in Emacs

Emacs Octave Support is already packaged in Emacs 22 and 23.
To begin using Octave mode for all `.m’ files you visit, add the following lines to a file loaded by Emacs at startup time, typically your `~/.emacs’ file:
(autoload ‘octave-mode “octave-mod” nil t)
(setq auto-mode-alist
(cons ‘(“\\.m$” . octave-mode) auto-mode-alist))

[...]

Writing Latex in Emacs made easy

I found this package to make writing Latex docs in Emacs pretty easy: AUCTeX. To install type
sudo apt-get install auctex
This is the AUCTeX reference card for using it in emacs.

Install Pretty Emacs!

This improves the font in Emacs. Follow the instruction in this <a href=”http://peadrop.com/blog/2007/01/06/pretty-emaprettyemacs1.pngcs/”>link. To set the font, use this code at .emacs file instead of adding to .Xresources file
(if (>= emacs-major-version 23)
(set-default-font “Monospace-11 ” ))

Changing Emacs Color Theme

To change Emacs color theme, first install emacs-goodies-el by typing
apt-get install emacs-goodies-el
To choose and try, run emacs and type
M-x color-theme-select
It will open a list of color theme. To use a certain color theme everytime emacs is started, create .emacs file in your home directory and type

;; Color theme
(require ‘color-theme)
(setq color-theme-is-global t)
(color-theme-gnome2)

open your emacs again [...]