summaryrefslogtreecommitdiff
path: root/emacs/site-lisp/my-binds.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/site-lisp/my-binds.el')
-rw-r--r--emacs/site-lisp/my-binds.el24
1 files changed, 0 insertions, 24 deletions
diff --git a/emacs/site-lisp/my-binds.el b/emacs/site-lisp/my-binds.el
deleted file mode 100644
index 990dd46..0000000
--- a/emacs/site-lisp/my-binds.el
+++ /dev/null
@@ -1,24 +0,0 @@
-;;; Various custom binds that aren't part of an external package
-
-(provide 'my-binds)
-(require 'my-funcs)
-
-(global-set-key (kbd "C-x C-C") 'save-buffers-kill-terminal)
-(global-set-key (kbd "C-x C-c") 'close-or-kill)
-(global-set-key (kbd "M-w") 'copy-region-as-kill) ;;make copying not flash cursor
-(global-set-key (kbd "M-(") 'wrap-region-paren)
-(global-set-key (kbd "M-z") 'zap-whitespace)
-(global-set-key (kbd "C-M-z") 'wrap-sexp)
-(global-set-key (kbd "M-o") 'other-window)
-(global-set-key (kbd "M-c") 'calc)
-(global-set-key (kbd "M-U") 'scroll-lock-mode)
-(global-set-key (kbd "M-Q") 'auto-fill-mode)
-(require 'dired)
-(keymap-set dired-mode-map "C-o" 'dired-display-file)
-(keymap-set dired-mode-map "F" 'dired-do-find-marked-files)
-
-;; searching
-(global-set-key (kbd "M-s g") 'rgrep)
-(global-set-key (kbd "M-s r") 'counsel-rg)
-
-(global-set-key (kbd "C-x w o") 'toggle-window-other-reachability)