This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
dianciemacs/lisp/packages.el
Muhammad Nauman Raza bcb6f7a1a3
feat: which-key
2022-11-08 17:53:07 +00:00

42 lines
992 B
EmacsLisp

;;; This file contains the packages that Dianciemacs uses
;; magit - A beautiful git porcelain for Emacs
(use-package magit)
;;; Themes
;; Install the Doom Emacs theme megapack.
(use-package doom-themes)
;; kaolin-themes, depends on autothemer
(use-package kaolin-themes
:requires autothemer)
(use-package autothemer)
;; all-the-icons - Icons for various UI elements
(use-package all-the-icons)
;;; org-mode
;; org-superstar
(use-package org-superstar)
;;; evil - A Vi layer inside of Emacs
(use-package evil
:init
(setq evil-want-keybinding nil ; Make room for evil-collection
evil-want-integration t ; Same as above
evil-undo-system 'undo-fu)) ; Set the undo/redo system
;; A collection of keybinds for evil-mode
(use-package evil-collection
:after evil) ; In order to recognize evil-want-... being set
;; undo-fu, used by evil for undo/redo functionality
(use-package undo-fu)
;;; Keybinds
(use-package which-key)
;; Provide this file to init.el
(provide 'packages)