]> git.donarmstrong.com Git - lib.git/blobdiff - emacs_el/configuration/don-configuration.org
update org files
[lib.git] / emacs_el / configuration / don-configuration.org
index 7d3512954c44109d6c12e082537df1f64a157f4f..572d8076a5a4502faf0b9e79b7aa438c95f3d2fb 100644 (file)
@@ -1,3 +1,11 @@
+* Load debugger
+
+# if for some reason, things get pear-shaped, we want to be able to
+# enter the debugger by sending -USR2 to emacs
+
+#+BEGIN_SRC emacs-lisp :tangle don-configuration.el
+(setq debug-on-event 'siguser2)
+#+END_SRC
 * Add library paths
 
 #+BEGIN_SRC emacs-lisp  :tangle don-configuration.el
 #+BEGIN_SRC emacs-lisp  :tangle don-configuration.el
 (require 'don-helm)
 #+END_SRC
+** Hydra
+#+BEGIN_SRC emacs-lisp :tangle don-configuration.el
+(require 'don-hydra)
+#+END_SRC
 
+** Tramp
+#+BEGIN_SRC emacs-lisp  :tangle don-configuration.el
+  (add-to-list 'tramp-methods '("vcsh"
+                                (tramp-login-program "vcsh")
+                                (tramp-login-args
+                                 (("enter")
+                                  ("%h")))
+                                (tramp-remote-shell "/bin/sh")
+                                (tramp-remote-shell-args
+                                 ("-c"))))
+#+END_SRC
 * Keybindings
 ** Override other things
 #+BEGIN_SRC emacs-lisp  :tangle don-configuration.el