summaryrefslogtreecommitdiff
path: root/emacs/personal-lisp/custom-binds.el
diff options
context:
space:
mode:
authorTCCQ <thomasmulmer02@gmail.com>2025-02-14 15:40:29 -0800
committerTCCQ <thomasmulmer02@gmail.com>2025-02-14 15:40:29 -0800
commit2576f016153baa11c6e62deeb329dd72f0aa89c8 (patch)
treeafd9e5c4cd42a67a4cacd82fc4f63622c1a26990 /emacs/personal-lisp/custom-binds.el
parent5b23587f638dde8faf821edd50d72cb988af5387 (diff)
emacs full rework from laptop
Diffstat (limited to 'emacs/personal-lisp/custom-binds.el')
-rw-r--r--emacs/personal-lisp/custom-binds.el20
1 files changed, 0 insertions, 20 deletions
diff --git a/emacs/personal-lisp/custom-binds.el b/emacs/personal-lisp/custom-binds.el
deleted file mode 100644
index 92dcc69..0000000
--- a/emacs/personal-lisp/custom-binds.el
+++ /dev/null
@@ -1,20 +0,0 @@
-;; keyboard binds (mostly global)
-(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)
-(require 'buffer-move)
-(global-set-key (kbd "C-x -") 'buf-move-right)
-(global-set-key (kbd "M-o") 'other-window)
-(global-set-key (kbd "M-c") 'calc)
-(global-set-key (kbd "M-k") 'kill-current-buffer)
-(global-set-key (kbd "M-K") 'kill-buffer-and-window)
-(global-set-key (kbd "M-U") 'scroll-lock-mode)
-(global-set-key (kbd "M-Q") 'auto-fill-mode)
-(require 'dired)
-(define-key dired-mode-map (kbd "C-o") 'dired-display-file)
-;; (add-hook 'dired-mode-hook (lambda ()
-;; (define-key evil-normal-state-local-map (kbd "C-o")
-;; 'dired-display-file)))