From 82c86e859ff15721bc0e244164a7cc22a671ecc7 Mon Sep 17 00:00:00 2001 From: Duncan Mac-Vicar P Date: Mon, 14 Apr 2008 21:55:50 +0200 Subject: [PATCH] --- .emacs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .emacs diff --git a/.emacs b/.emacs new file mode 100644 index 0000000..917c650 --- /dev/null +++ b/.emacs @@ -0,0 +1,30 @@ +(setq load-path (cons (expand-file-name "~/.emacs.d") load-path)) + +; Get rid of that icon tool bar +;(tool-bar-mode -1) + +; never use tabs +(setq-default indent-tabs-mode nil) +(setq show-trailing-whitespace t) + +; dont create backups +(setq make-backup-files nil) + +(load "custom-c" ) ; C/C++ custom + +(load "custom-ruby" ) ; ruby customization + +;(setq 'compile-command "ant -emacs") + +(load "custom-cmake") ; cmake autoload +(load "custom-git") ; git mode + +(global-auto-revert-mode) + +(load "custom-python") ; python + +; buffer list with alt-return +(global-set-key [(meta return)] 'electric-buffer-list ) +; I hate the ctrl-z stuff +;(global-set-key "C-Z" nil) + -- 2.39.2