summaryrefslogtreecommitdiff
path: root/lisp/td-common.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/td-common.el')
-rw-r--r--lisp/td-common.el19
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