diff options
| author | bard <[email protected]> | 2024-03-17 21:16:00 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-03-17 21:16:00 -0400 |
| commit | e96749fc388b5a212efdd6d64345648219c0f7bf (patch) | |
| tree | 3ebdaa1eccdafa3bff779d349ae1d0d264c811ba | |
| parent | 81ce6c5eb9b95c994d6f9bb9173e320b05ca59a8 (diff) | |
changed keybinds
| -rw-r--r-- | bard-elisp/bard-editing.el | 2 | ||||
| -rw-r--r-- | bard-elisp/bard-terminal.el | 2 | ||||
| -rw-r--r-- | bard-emacs-modules/bard-emacs-dired.el | 9 | ||||
| -rw-r--r-- | bard-emacs-modules/bard-emacs-package.el | 13 |
4 files changed, 20 insertions, 6 deletions
diff --git a/bard-elisp/bard-editing.el b/bard-elisp/bard-editing.el index 6118cb4..d1b0310 100644 --- a/bard-elisp/bard-editing.el +++ b/bard-elisp/bard-editing.el @@ -44,7 +44,7 @@ (kill-new line-text) (message "Copied current line"))) -(global-set-key (kbd "C-x l") 'bard/copy-current-line) +;; (global-set-key (kbd "C-c y") 'bard/copy-current-line) ;; Multiple cursors (global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines) diff --git a/bard-elisp/bard-terminal.el b/bard-elisp/bard-terminal.el index 2aa77bb..4b3db36 100644 --- a/bard-elisp/bard-terminal.el +++ b/bard-elisp/bard-terminal.el @@ -12,6 +12,6 @@ (let ((default-directory default-directory)) (start-process "st terminal" nil "st"))) -(define-key global-map (kbd "C-c t") 'bard/open-terminal-emulator) +(define-key global-map (kbd "<f1>") 'bard/open-terminal-emulator) (provide 'bard-terminal.el) diff --git a/bard-emacs-modules/bard-emacs-dired.el b/bard-emacs-modules/bard-emacs-dired.el index 8cd6a31..e8a72f4 100644 --- a/bard-emacs-modules/bard-emacs-dired.el +++ b/bard-emacs-modules/bard-emacs-dired.el @@ -1,3 +1,8 @@ +(use-package dired-subtree + :ensure t + :config + (setq dired-subtree-use-backgrounds nil)) + (define-key global-map (kbd "C-j") #'dired-jump) (add-hook 'org-mode-hook (lambda() @@ -12,4 +17,6 @@ (add-hook 'dired-mode-hook (lambda() - (define-key dired-mode-map (kbd "E") #'emms-add-dired))) + (define-key dired-mode-map (kbd "E") #'emms-add-dired) + (define-key dired-mode-map (kbd "<tab>") #'dired-subtree-toggle) + (define-key dired-mode-map (kbd "<backtab>") #'dired-subtree-cycle))) diff --git a/bard-emacs-modules/bard-emacs-package.el b/bard-emacs-modules/bard-emacs-package.el index c12ce13..7ddba36 100644 --- a/bard-emacs-modules/bard-emacs-package.el +++ b/bard-emacs-modules/bard-emacs-package.el @@ -205,7 +205,7 @@ The exact color values are taken from the active Ef theme." (setq dashboard-center-content t) (setq dashboard-items '((recents . 5) (agenda . 5))) - (setq dashboard-banner-logo-title "Слава богу ты вернулся") + (setq dashboard-banner-logo-title "Time for another recreational programming session") (setq dashboard-set-footer nil) (setq dashboard-set-init-info nil)) @@ -247,8 +247,15 @@ The exact color values are taken from the active Ef theme." ;; Desktop notification urgency level (setq tmr-notification-urgency 'normal) (setq tmr-descriptions-list 'tmr-description-history) - (define-key global-map (kbd "M-<f8>") 'tmr-tabulated-view) - (define-key global-map (kbd "<f8>") 'tmr-with-description)) + (define-key global-map (kbd "C-c t l") 'tmr-tabulated-view) + (define-key global-map (kbd "C-c t T") #'tmr-with-description) + (define-key global-map (kbd "C-c t l") #'tmr-tabulated-view) + (define-key global-map (kbd "C-c t c") #'tmr-clone) + (define-key global-map (kbd "C-c t k") #'tmr-cancel) + (define-key global-map (kbd "C-c t s") #'tmr-reschedule) + (define-key global-map (kbd "C-c t e") #'tmr-edit-description) + (define-key global-map (kbd "C-c t r") #'tmr-remove) + (define-key global-map (kbd "C-c t R") #'tmr-remove-finished)) (use-package hl-todo :ensure t |
