From ed836738a16efb7721b72f6aa58f07541fd37393 Mon Sep 17 00:00:00 2001 From: tslil clingman <> Date: Sat, 13 Jul 2024 15:07:01 +0200 Subject: [emacs] cleanup --- emacs/work_inits/70-global-keybinds.el | 49 ---------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 emacs/work_inits/70-global-keybinds.el (limited to 'emacs/work_inits/70-global-keybinds.el') diff --git a/emacs/work_inits/70-global-keybinds.el b/emacs/work_inits/70-global-keybinds.el deleted file mode 100644 index 816998f..0000000 --- a/emacs/work_inits/70-global-keybinds.el +++ /dev/null @@ -1,49 +0,0 @@ -;; Time-stamp: <2020-10-26 17h12 EDT (hobbies)> - -(setq time-stamp-active t - time-stamp-line-limit 3 - time-stamp-format "%Y-%02m-%02d %02Hh%02M %Z (%s)") - -(add-hook 'before-save-hook #'time-stamp) - -(defun insert-timestamp () - (interactive) - (save-excursion - (goto-char (point-min)) - (unless (search-forward "Time-stamp: " - (line-beginning-position (1+ time-stamp-line-limit)) - t) - (goto-char (point-min)) - (newline) - (beginning-of-line 0) - (comment-dwim nil) - (insert (concat "Time-stamp: " "<>")) - (newline)) - (time-stamp))) -(global-set-key (kbd "C-x t") 'insert-timestamp) - -(global-set-key (kbd "C-z") 'nil) - -(use-package eterm-256color - :ensure t - :config - (add-hook 'term-mode-hook #'eterm-256color-mode) - (global-set-key (kbd "C-c c") 'ansi-term)) - -(global-set-key (kbd "C-x e") 'eval-expression) - -(global-set-key (kbd "M-i") 'indent-region) - -(global-set-key (kbd "C-v") 'delete-indentation) - -;; ----------------------------------------------------------------------------- -;; Killing -(global-set-key (kbd "C-c C-k") 'kill-whole-line) -(global-set-key (kbd "M-z") 'zap-up-to-char) - -(defun kill-region-or-backward-kill-word (arg) - (interactive "p") - (if (region-active-p) (kill-region 0 0 t) - (backward-kill-word arg))) - -(global-set-key (kbd "C-w") 'kill-region-or-backward-kill-word) -- cgit v1.2.3