Skip to content

Commit

Permalink
Disable C-x C-c shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
dbr committed Aug 29, 2014
1 parent 62b19d4 commit d14ef91
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config.org
Expand Up @@ -176,6 +176,13 @@ identical in disabled windows.
(setq server-use-tcp nil)
(server-start)
#+end_src
** Prevent accidental quitting
#+begin_src emacs-lisp
(global-set-key (kbd "C-x C-c")
(lambda ()
(interactive)
(message "Disabled. Use 'M-x kill-emacs'")))
#+end_src
* FS navigation
** Use ido for shinier minibuf (C-x b and C-x C-f)
#+begin_src emacs-lisp
Expand Down

0 comments on commit d14ef91

Please sign in to comment.