aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules
diff options
context:
space:
mode:
Diffstat (limited to 'bard-emacs-modules')
-rw-r--r--bard-emacs-modules/bard-emacs-dired.el9
-rw-r--r--bard-emacs-modules/bard-emacs-package.el13
2 files changed, 18 insertions, 4 deletions
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