Skip to content

Instantly share code, notes, and snippets.

@ihercowitz
Last active January 1, 2016 22:49
Show Gist options
  • Select an option

  • Save ihercowitz/8212399 to your computer and use it in GitHub Desktop.

Select an option

Save ihercowitz/8212399 to your computer and use it in GitHub Desktop.
my emacs custom config
(defun set-clojure-mode ()
(interactive)
(save-excursion
(split-window-horizontally)
(clojure-mode)
(cider-jack-in)
(other-window 0)))
(global-set-key (kbd "C-z") 'undo)
(global-set-key (kbd "C-x M-c") 'set-clojure-mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment