Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
436 B

  1. ;; This contains global modes ONLY
  2. ;; built in functions
  3. (use-package t
  4. :bind
  5. (("C-x C-k C-x C-k" . kill-emacs)))
  6. (use-package ace-window
  7. :bind
  8. ("C-\\" . ace-window))
  9. (use-package iedit
  10. :bind
  11. (("C-!" . iedit-mode)
  12. ("M-]" . iedit-mode)))
  13. ;; better shell remote bindings
  14. (use-package better-shell
  15. :bind
  16. (("C-; r" . better-shell-remote-open)
  17. ("C-; !" . better-shell-sudo-here)
  18. ("C-; s" . better-shell-shell)))