aboutsummaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorgxlin <[email protected]>2021-05-15 19:34:11 +0800
committergxlin <[email protected]>2021-05-23 20:59:42 +0800
commit6e95c977654e5e40ffa60b27fa9a31354a1f5997 (patch)
treeeb862003417e8d88aa0f24b5b9313677a026463b /.emacs.d/init.el
parentc7d4dc60a1827ad2ef4748239fe4276140631848 (diff)
downloaddotfiles-6e95c977654e5e40ffa60b27fa9a31354a1f5997.tar.gz
dotfiles-6e95c977654e5e40ffa60b27fa9a31354a1f5997.tar.bz2
dotfiles-6e95c977654e5e40ffa60b27fa9a31354a1f5997.zip
Add aria2 config
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el22
1 files changed, 10 insertions, 12 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 3c48275..68ac66c 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -25,7 +25,11 @@
(load-theme 'atom-one-dark t))
(set-face-attribute 'default nil :font "Monaco" :height 150)
-(use-package which-key)
+(use-package which-key
+ :ensure t
+ :config
+ (which-key-mode))
+
(use-package undo-tree
:config
(global-undo-tree-mode))
@@ -75,17 +79,6 @@
:config
(setq vterm-kill-buffer-on-exit t))
-(use-package dashboard
- :ensure t
- :config
- (dashboard-setup-startup-hook)
- (setq dashboard-startup-banner nil)
- (setq dashboard-items '((recents . 5)
- (bookmarks . 5)
- (projects . 5)
- (agenda . 5)
- (registers . 5))))
-
(use-package markdown-mode
:ensure t
:commands (markdown-mode gfm-mode)
@@ -102,3 +95,8 @@
(exec-path-from-shell-initialize))
(use-package avy)
+
+(use-package paredit
+ :hook ((emacs-lisp-mode . enable-paredit-mode)
+ (lisp-mode . enable-paredit-mode)
+ (scheme-mode . enable-paredit-mode)))