From 5c1b2a5da3c11f8b2d946219b2afeac526e6627d Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sat, 1 Jun 2024 16:11:59 -0700 Subject: Rename Config --- nemacs-packages.el | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 nemacs-packages.el (limited to 'nemacs-packages.el') diff --git a/nemacs-packages.el b/nemacs-packages.el deleted file mode 100644 index b9b7a80..0000000 --- a/nemacs-packages.el +++ /dev/null @@ -1,44 +0,0 @@ -;; Automatically update packages -(require 'nemacs-package-auto-package-update) -;; Org Mode -(require 'nemacs-package-org) -;; Remove Minor Modes from Modeline -(require 'nemacs-package-diminish) -;; Flyspell Autocorrect -(use-package flyspell - :ensure t - :diminish flyspell-mode) -;; Which-key mode -(use-package which-key - :ensure t - :diminish which-key-mode - :init - (which-key-mode +1)) -;; Parentheses -(use-package paren - :ensure t - :config - (show-paren-mode +1) - (setq show-paren-style 'expression - show-paren-when-point-inside-paren t - show-parent-when-point-in-periphery t)) -;; Ido Completions -(require 'nemacs-package-ido) -;; HTML Highlighting -(use-package htmlize - :ensure t) -;; Argument documentation in the status bar -(use-package eldoc - :ensure t - :diminish eldoc-mode - :hook - ((emacs-lisp-mode-hook lisp-interaction-mode-hook) . eldoc-mode)) -;; Avy -(use-package avy - :ensure t - :config - (global-set-key (kbd "C-:") 'avy-goto-word-0) - (global-set-key (kbd "M-g l") 'avy-goto-line) - (global-set-key (kbd "M-g w") 'avy-goto-word-0)) - -(provide 'nemacs-packages) -- cgit v1.2.1