]> icculus.org git repositories - duncan/emacs-config.git/blob - .emacs
(no commit message)
[duncan/emacs-config.git] / .emacs
1 (setq load-path (cons (expand-file-name "~/.emacs.d") load-path))
2
3 ; Get rid of that icon tool bar
4 ;(tool-bar-mode -1)
5
6 ; never use tabs
7 (setq-default indent-tabs-mode nil)
8 (setq show-trailing-whitespace t)
9
10 ; dont create backups
11 (setq make-backup-files nil) 
12
13 (load "custom-c"    ) ; C/C++ custom
14
15 (load "custom-ruby"    ) ; ruby customization
16
17 ;(setq 'compile-command "ant -emacs")
18
19 (load "custom-cmake") ; cmake autoload
20 (load "custom-git") ; git mode
21
22 (global-auto-revert-mode)
23
24 (load "custom-python") ; python
25
26 ; buffer list with alt-return
27 (global-set-key [(meta return)] 'electric-buffer-list   )
28 ; I hate the ctrl-z stuff
29 ;(global-set-key "C-Z" nil)
30