diff options
-rw-r--r-- | emacs-prelude/personal/lisp/init-dashboard.el | 2 | ||||
-rw-r--r-- | emacs-prelude/personal/lisp/init-misc.el | 3 | ||||
-rw-r--r-- | emacs-prelude/personal/lisp/init-ui.el | 8 |
3 files changed, 10 insertions, 3 deletions
diff --git a/emacs-prelude/personal/lisp/init-dashboard.el b/emacs-prelude/personal/lisp/init-dashboard.el index 68dbed6..4bbf04f 100644 --- a/emacs-prelude/personal/lisp/init-dashboard.el +++ b/emacs-prelude/personal/lisp/init-dashboard.el @@ -3,7 +3,9 @@ :init (setq dashboard-center-content t dashboard-set-footer nil + dashboard-week-agenda t dashboard-projects-backend 'projectile + dashboard-projects-switch-function 'projectile-persp-switch-project dashboard-items '((recents . 15) (bookmarks . 5) (projects . 5) diff --git a/emacs-prelude/personal/lisp/init-misc.el b/emacs-prelude/personal/lisp/init-misc.el index 20dcca5..63edbcc 100644 --- a/emacs-prelude/personal/lisp/init-misc.el +++ b/emacs-prelude/personal/lisp/init-misc.el @@ -21,7 +21,7 @@ (use-package multi-vterm :init (unbind-key "C-c t" prelude-mode-map) :bind (("C-c t" . multi-vterm-next) - ("C-c M-t" . multi-vterm) + ("C-c C-M-t" . multi-vterm) (:map vterm-mode-map ("C-a" . vterm-send-C-a) ; TODO the crux binding is taking precedence ("C-c C-a" . vterm-send-C-a) @@ -29,4 +29,3 @@ ("M-]" . multi-vterm-next)))) (provide 'init-misc) - diff --git a/emacs-prelude/personal/lisp/init-ui.el b/emacs-prelude/personal/lisp/init-ui.el index 0bdebfa..c382469 100644 --- a/emacs-prelude/personal/lisp/init-ui.el +++ b/emacs-prelude/personal/lisp/init-ui.el @@ -32,5 +32,11 @@ :config (ctrlf-mode +1)) -(provide 'init-ui) +(prelude-require-package 'buffer-move) +(use-package buffer-move + :bind (("C-S-<up>" . buf-move-up) + ("C-S-<down>" . buf-move-down) + ("C-S-<left>" . buf-move-left) + ("C-S-<right>" . buf-move-right))) +(provide 'init-ui) |