minimalist
; Who needs these whatever-bars anyway?
(tool-bar-mode -1)
(menu-bar-mode -1)
(scroll-bar-mode -1)
; Toggles the font-lock feature so that emacs
; highligths my texts.
(global-font-lock-mode t)
; Share the clipboard with X
(setq x-select-enable-clipboard t)
; Show column number on the status line
(column-number-mode t)
; Lets emacs uncompress .gz files before opening them
(auto-compression-mode 1)
; The proper TeX/LaTeX printing command for my system
(setq tex-dvi-print-command "dvips -f * | lpr")
; Preview TeX/LaTeX output with xdvi and telling it to
; watch the file for changes every 3 seconds
(setq tex-dvi-view-command "xdvi -watchfile 3 -expertmode 0")
; Set the papersize to a4
(setq ps-paper-type 'a4small)
; I use UTF-8
(set-keyboard-coding-system 'utf-8)
(set-terminal-coding-system 'utf-8)