<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>emacs/erlware-mode</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -43,9 +43,13 @@
 (global-set-key (kbd &quot;M-w&quot;) 'toggle-colors-white)
 (global-set-key (kbd &quot;M-b&quot;) 'toggle-colors-black)
 (global-set-key (kbd &quot;C-x 4 t&quot;) 'transpose-buffers)
-(define-key osx-key-mode-map [home] 'beginning-of-line)
-(define-key osx-key-mode-map [end] 'end-of-line)
-(define-key osx-key-mode-map [f3] 'nuke-all-buffers)
-(define-key osx-key-mode-map [f5] 'rgrep)
+(global-set-key (kbd &quot;M-e&quot;) 'anything)
+(global-set-key (kbd &quot;M-s&quot;) 'save-buffer)
+(global-set-key [home] 'beginning-of-line)
+(global-set-key [end] 'end-of-line)
+(global-set-key [f3] 'nuke-all-buffers)
+(global-set-key [f5] 'rgrep)
 
+(setq ring-bell-function 'ignore)
+(tool-bar-mode 0)
 (toggle-colors-black)
\ No newline at end of file</diff>
      <filename>emacs/custom_keys/custom_keys_config.el</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,11 @@
 (provide 'erlang_mode_config)
 
-(add-to-list 'load-path &quot;/opt/lib/erlang/lib/tools-2.6.2/emacs&quot;)
+(add-to-list 'load-path &quot;../erlware-mode&quot;)
 (require 'erlang-start)
 (add-hook 'erlang-mode-hook
 	  (lambda()
 	    (setq indent-tabs-mode nil)
 	    (setq erlang-indent-level 2)
-	    (setq erlang-tab-always-indent nil)
+	    (setq erlang-tab-always-indent t)
 	    (add-to-list 'exec-path &quot;/opt/bin&quot;)
-	    (setq erlang-root-dir &quot;/opt&quot;)))
\ No newline at end of file
+	    (setq erlang-root-dir &quot;/opt&quot;)))</diff>
      <filename>emacs/erlang/erlang_mode_config.el</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1,11 @@
-(provide 'erlang_mode_config)
\ No newline at end of file
+(provide 'erlang_mode_config)
+
+(add-to-list 'load-path &quot;/opt/lib/erlang/lib/tools-2.6.2/emacs&quot;)
+(require 'erlang-start)
+(add-hook 'erlang-mode-hook
+	  (lambda()
+	    (setq indent-tabs-mode nil)
+	    (setq erlang-indent-level 2)
+	    (setq erlang-tab-always-indent #t)
+	    (add-to-list 'exec-path &quot;/opt/bin&quot;)
+	    (setq erlang-root-dir &quot;/opt&quot;)))
\ No newline at end of file</diff>
      <filename>emacs/erlang/erlang_mode_config.el~</filename>
    </modified>
    <modified>
      <diff>@@ -116,6 +116,13 @@ Zero-length substrings at the beginning and end of the list are omitted.&quot;
       'line-end-position
     (lambda (&amp;optional arg) (save-excursion (end-of-line arg) (point)))))
 
+(defun locate-dominating-file (file regexp)
+  &quot;Look up the directory hierarchy from FILE for a file matching REGEXP.&quot;
+  ;; If FILE does not exist, find its parent directory that does.
+  (or (file-exists-p file)
+      (while (and file (not (file-directory-p file)))
+	(setq file (file-name-directory (directory-file-name file))))))
+
 (defun flymake-posn-at-point-as-event (&amp;optional position window dx dy)
   &quot;Return pixel position of top left corner of glyph at POSITION,
 relative to top left corner of WINDOW, as a mouse-1 click</diff>
      <filename>emacs/flymake/flymake.el</filename>
    </modified>
    <modified>
      <diff>@@ -1,21 +1,24 @@
 (provide 'my_config)
 
 ;; Tweaking editing environment
+;; This assumes hypotheticalabs/emacs is symlinked to ~/emacs
 (setq-default show-trailing-whitespace t)
-;;(add-to-list 'default-frame-alist '(alpha . (100 70)))
 (add-to-list 'default-frame-alist '(alpha . (100 100)))
 (add-to-list 'load-path &quot;~/emacs/erlang&quot;) ;; Configuration for Erlang mode
 (add-to-list 'load-path &quot;~/emacs/flymake&quot;) ;; Flymake syntax checker
 (add-to-list 'load-path &quot;~/emacs/git&quot;) ;; Git mode
+(add-to-list 'load-path &quot;~/emacs/anything&quot;) ;; Quicksilver-like switcher
 ;;(add-to-list 'load-path &quot;~/emacs/distel&quot;) ;; Distel package
 (add-to-list 'load-path &quot;~/emacs/whitespace&quot;) ;; Whitespace package
 (add-to-list 'load-path &quot;~/emacs/autosave&quot;) ;; Autosave config
 (add-to-list 'load-path &quot;~/emacs/custom_keys&quot;) ;; Custom keys config
 
+
 (require 'erlang_mode_config) ;; Loading Erlang mode
 (require 'flymake_config) ;; Loading flymake
+(require 'anything-config)
 ;;(require 'distel_config) ;; Loading distel
 (require 'whitespace_config) ;; Loading whitespace
 (require 'git) ;; Loading Git mode
 (require 'autosave_config) ;; Configures autosaving
-(require 'custom_keys_config) ;; custom key bindings
\ No newline at end of file
+(require 'custom_keys_config) ;; custom key bindings</diff>
      <filename>emacs/my_config.el</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>emacs/autosave/autosave_config.elc</filename>
    </removed>
    <removed>
      <filename>emacs/flymake/flymake.elc</filename>
    </removed>
    <removed>
      <filename>emacs/flymake/flymake_config.elc</filename>
    </removed>
    <removed>
      <filename>emacs/whitespace/whitespace.elc</filename>
    </removed>
    <removed>
      <filename>emacs/whitespace/whitespace_config.elc</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>4733ec5b6957b51fc612a8edf9b9fc88a89c4049</id>
    </parent>
  </parents>
  <author>
    <name>kevsmith</name>
    <email>kevin@hypotheticalabs.com</email>
  </author>
  <url>http://github.com/kevsmith/hypotheticalabs/commit/9e6af21aa6fd44724ee3b43b5b5968fa27e22372</url>
  <id>9e6af21aa6fd44724ee3b43b5b5968fa27e22372</id>
  <committed-date>2009-05-16T14:23:33-07:00</committed-date>
  <authored-date>2009-05-16T14:23:33-07:00</authored-date>
  <message>* Catching up with the current state of my configs</message>
  <tree>45f9d9f5403ebdb9a6ec8f3df36575af1f9614dc</tree>
  <committer>
    <name>kevsmith</name>
    <email>kevin@hypotheticalabs.com</email>
  </committer>
</commit>
