configurations.el 440 B

12345678910111213141516171819202122
  1. ;; M-o rocca
  2. (global-unset-key (kbd "M-o"))
  3. (global-set-key (kbd "M-o") 'other-window)
  4. ;; moris day mode
  5. (display-time-mode 1)
  6. ;; not ur mother's emacs
  7. (setq sentence-end-double-space nil)
  8. ;; lazy
  9. (fset 'yes-or-no-p 'y-or-n-p)
  10. ;; what file am i editing?
  11. (global-set-key (kbd "C-c f")
  12. (lambda ()
  13. (interactive)
  14. (message "%s" buffer-file-name)))
  15. ;; handy for sexps
  16. (global-set-key (kbd "C-M-<backspace>")
  17. 'backward-kill-sexp)