Skip to content

Commit

Permalink
add Delight
Browse files Browse the repository at this point in the history
  • Loading branch information
ravachol-yang committed Feb 24, 2024
1 parent 07b9125 commit 931243b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ to use the latest stable Emacs release like I do.
- Racket (Racket Mode)
- Enhance
- Counsel (ivy, counsel, swiper)
- Delight

## Other requirements
?
Expand Down
1 change: 1 addition & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@

;; enhance
(require 'init-counsel)
(require 'init-delight)

;; Allow users to provide an optional "init-preload-local.el"
(require 'init-preload-local nil t)
Expand Down
4 changes: 3 additions & 1 deletion lisp/init-company.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
;;; Commentary:
;;; Code:

(maybe-require-package 'company)
(use-package company
:ensure t
:delight company-mode)
(add-hook 'after-init-hook 'global-company-mode)

(setq company-idle-delay
Expand Down
5 changes: 4 additions & 1 deletion lisp/init-counsel.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
;;; Commentary:
;;; Code:

(maybe-require-package 'counsel)
(use-package counsel
:ensure t
:delight counsel-mode
:delight ivy-mode)

(ivy-mode)
(counsel-mode)
Expand Down
8 changes: 8 additions & 0 deletions lisp/init-delight.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
;;; init-delight.el --- Delight Mode -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:

(use-package delight :ensure t)

(provide 'init-delight)
;;; init-delight.el ends here
1 change: 1 addition & 0 deletions lisp/init-elpa.el
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
(add-to-list 'package-archives '( "melpa" . "https://melpa.org/packages/") t)
;; Official MELPA Mirror, in case necessary.
;;(add-to-list 'package-archives (cons "melpa-mirror" (concat proto "://www.mirrorservice.org/sites/melpa.org/packages/")) t)
(setq package-check-signature nil)



Expand Down

0 comments on commit 931243b

Please sign in to comment.