From e96749fc388b5a212efdd6d64345648219c0f7bf Mon Sep 17 00:00:00 2001 From: bard Date: Sun, 17 Mar 2024 21:16:00 -0400 Subject: changed keybinds --- bard-emacs-modules/bard-emacs-dired.el | 9 ++++++++- bard-emacs-modules/bard-emacs-package.el | 13 ++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) (limited to 'bard-emacs-modules') 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 "") #'dired-subtree-toggle) + (define-key dired-mode-map (kbd "") #'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-") 'tmr-tabulated-view) - (define-key global-map (kbd "") '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 -- cgit v1.2.3