chore: remove package.el

This was done as having to move between files to understand what some
package/code does was too much of a hassle
This commit is contained in:
Muhammad Nauman Raza 2022-11-08 17:53:07 +00:00
parent bcb6f7a1a3
commit 836d92b59f
No known key found for this signature in database
GPG key ID: A9A36C429C9CAE31
5 changed files with 44 additions and 48 deletions

View file

@ -32,7 +32,6 @@
(convert-standard-filename "lisp/"))) (convert-standard-filename "lisp/")))
;; Load the code of some external files ;; Load the code of some external files
(require 'packages)
(require 'interface) (require 'interface)
(require 'editor) (require 'editor)
(require 'org-mode) (require 'org-mode)

View file

@ -4,8 +4,22 @@
(global-set-key (kbd "<escape>") 'keyboard-escape-quit) (global-set-key (kbd "<escape>") 'keyboard-escape-quit)
;;; evil - A Vi Layer inside of Emacs ;;; evil - A Vi Layer inside of Emacs
(evil-collection-init) ; Enable the evil-collection keybinds (use-package evil
(evil-mode 1) ; Enable 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
:config
(evil-mode 1))
;; evil-collection - a collection of keybindings for evil-mode
(use-package evil-collection
:after evil ; In order to recognize evil-want-... being set
:init
(evil-collection-init)) ; Enable the evil-collection keybinds
;; undo-fu, used by evil for undo/redo functionality
(use-package undo-fu)
;; Disable the creation of files ending with '~' (backup files) ;; Disable the creation of files ending with '~' (backup files)
(setq make-backup-files nil) (setq make-backup-files nil)

View file

@ -20,5 +20,25 @@
(set-face-foreground face (face-attribute 'default :background))) (set-face-foreground face (face-attribute 'default :background)))
(set-face-background 'fringe (face-attribute 'default :background)) (set-face-background 'fringe (face-attribute 'default :background))
;; magit - A beautiful git porcelain for Emacs
(use-package magit)
;; which-key - a popup which displays available keybindings
(use-package which-key)
;;; Themes
;; Install the Doom Emacs theme megapack.
(use-package doom-themes)
;; kaolin-themes, depends on autothemer
(use-package kaolin-themes
:requires autothemer)
;; autothemer - conveniently create Emacs themes
(use-package autothemer)
;; all-the-icons - Icons for various UI elements
(use-package all-the-icons)
;; Provide this file to init.el ;; Provide this file to init.el
(provide 'interface) (provide 'interface)

View file

@ -1,5 +1,13 @@
;;; This file contains configuration for Emacs' org-mode ;;; This file contains configuration for Emacs' org-mode
;;; org-mode
;; org-superstar
(use-package org-superstar
:config
;; Change org-mode's heading bullets
(setq org-superstar-headline-bullets-list
'("🞉" "🞈" "🞇" "🞆" "🞅" "🞄")))
;; Customize org-mode's default functionality ;; Customize org-mode's default functionality
(setq org-ellipsis "..." (setq org-ellipsis "..."
org-use-property-inheritance t org-use-property-inheritance t
@ -13,10 +21,6 @@
org-hide-leading-stars t org-hide-leading-stars t
org-adapt-indentation t) org-adapt-indentation t)
;; Change org-mode's heading bullets
(setq org-superstar-headline-bullets-list
'("🞉" "🞈" "🞇" "🞆" "🞅" "🞄"))
;; Faces for the font sizes of org-mode headings ;; Faces for the font sizes of org-mode headings
(set-face-attribute 'org-level-8 nil :weight 'bold :inherit 'default) (set-face-attribute 'org-level-8 nil :weight 'bold :inherit 'default)
(set-face-attribute 'org-level-7 nil :inherit 'org-level-8) (set-face-attribute 'org-level-7 nil :inherit 'org-level-8)

View file

@ -1,41 +0,0 @@
;;; 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)