~edwargix/emacs.d

5d3e1414c7b5528e60eac05b44254b0397155b9c — David Florness 5 years ago d5331ea
C-RET opens a new urxvt terminal in default-directory
1 files changed, 9 insertions(+), 0 deletions(-)

M lisp/keys.el
M lisp/keys.el => lisp/keys.el +9 -0
@@ 46,6 46,15 @@
  :config
  (evil-org-set-key-theme))

;; opens a new terminal in default-directory
(global-set-key (kbd "C-<return>")
                (lambda ()
                  (interactive)
                  (start-process
                   "urxvt"
                   "*urxvt*"
                   "/usr/bin/urxvt"))) ;TODO: don't use absolute path

;;; I don't always know where my frames are, and I want a way to kill
;;; Emacs 100% of the time
(global-set-key (kbd "C-x C-c") 'save-buffers-kill-emacs)