summaryrefslogtreecommitdiff
path: root/.emacs.d/modules
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/modules')
-rw-r--r--.emacs.d/modules/thanos-aesthetics.el18
1 files changed, 4 insertions, 14 deletions
diff --git a/.emacs.d/modules/thanos-aesthetics.el b/.emacs.d/modules/thanos-aesthetics.el
index 23d86a4..f5eb30f 100644
--- a/.emacs.d/modules/thanos-aesthetics.el
+++ b/.emacs.d/modules/thanos-aesthetics.el
@@ -161,6 +161,9 @@
(display-battery-mode 1))
;; UI -- Vertico, consult, marginalia
+(require 'vertico)
+(require 'marginalia)
+
(vertico-mode)
(savehist-mode)
(define-key global-map (kbd "C-x b") 'consult-buffer)
@@ -170,6 +173,7 @@
(marginalia-mode)
;; Helpful
+(require 'helpful)
(define-key global-map (kbd "C-h f") #'helpful-callable)
(define-key global-map (kbd "C-h v") #'helpful-variable)
(define-key global-map (kbd "C-h k") #'helpful-key)
@@ -180,22 +184,8 @@
;; ibuffer
(global-set-key (kbd "C-x C-b") 'ibuffer)
-
(add-hook 'ibuffer-mode-hook 'nerd-icons-ibuffer-mode)
-(require 'markdown-mode)
-(setq markdown-header-scaling t)
-(add-to-list 'auto-mode-alist '("\\.md\\'" . gfm-mode))
-(setq markdown-command "multimarkdown")
-
-(electric-pair-mode 1)
-(auto-insert-mode 1)
-(global-flycheck-mode)
-(global-set-key (kbd "M-.") 'xref-find-definitions)
-(global-set-key (kbd "C-c L") 'display-line-numbers-mode)
-
-;; Symbols
-(add-hook 'emacs-lisp-mode-hook 'prettify-symbols-mode)
(provide 'thanos-aesthetics)
;;; thanos-aesthetics.el ends here