diff options
author | tdback <tyler@tdback.net> | 2025-02-08 10:11:17 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-02-08 10:11:17 -0500 |
commit | cfba685dd9f52381f47624a055c738e918c0f93b (patch) | |
tree | 47824866c376cfe48897b6ab2ecabdbfb037196e /lisp | |
parent | f30132e4fe11fb7837d979887d9851e325643391 (diff) |
lisp/td-common: add avy and eat packages
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/td-common.el | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/lisp/td-common.el b/lisp/td-common.el index 7e71f1b..f0a435a 100644 --- a/lisp/td-common.el +++ b/lisp/td-common.el @@ -1,15 +1,17 @@ -;;; -*- lexical-binding: t; -*- +;;; td-common.el --- common configuration -*- lexical-binding: t; -*- + +;;; Code: (use-package async :ensure t :config (async-bytecomp-package-mode 1)) -(use-package beframe +(use-package avy :ensure t - :config - (global-set-key (kbd "C-c b") 'beframe-prefix-map) - (beframe-mode 1)) + :bind (("C-'" . avy-goto-char-timer)) + :custom + (avy-timeout-seconds 0.5)) (use-package consult :ensure t @@ -39,6 +41,12 @@ (doom-modeline-buffer-encoding nil) (doom-modeline-modal-icon nil)) +(use-package eat + :ensure t + :bind (("C-x E" . eat)) + :custom + (eat-enable-autoline-mode t)) + (use-package ef-themes :ensure t :config @@ -143,3 +151,4 @@ (which-key-mode)) (provide 'td-common) +;;; td-common.el ends here |