]> gitweb.michael.orlitzky.com - emacs.d.git/blobdiff - .emacs
Added an indentation hook for ecmascript-mode.
[emacs.d.git] / .emacs
diff --git a/.emacs b/.emacs
index 3dbc9d5391f15ef80e8d56a0eae00b9ff2eaa39d..537001a6d3216706687d68b9d40fd85864051cbe 100644 (file)
--- a/.emacs
+++ b/.emacs
@@ -7,8 +7,17 @@
 ;; Set the frame title to the name of the buffer, if supported.
 (setq frame-title-format "%b")
 
-;; Disable the menu bar
+;; Currently needed to make Emacs 23 behave sanely.
+'(diff-jump-to-old-file t)
+
+;; Disable the menu/tool bars when we're using X.
 (menu-bar-mode -1)
+(when window-system
+  (tool-bar-mode -1))
+
+;; And put the damned scroll bar on the correct side.
+(when window-system
+  (set-scroll-bar-mode 'right))
 
 ;; The most important statement in this file.
 ;; Do not display a splash screen on startup.
@@ -70,6 +79,8 @@
 (load-library "diff-buffer-against-file")
 (global-set-key "\C-cd" 'diff-buffer-against-file)
 
+(load-library "fix-nonstandard-chars")
+
 
 ;; These next functions override the defaults provided by emacs. They
 ;; prevent warning messages related to file modification times,