summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2022-11-28 22:00:36 +0200
committerThanos Apollo <[email protected]>2022-11-28 22:00:36 +0200
commitd5b34d9ed4171a87ae8dea8c7791f17af9294d1d (patch)
treeb1adc56a7c8806155f831206a9a00b7a8ca45de6
parent3064f841b6c07b785bf1ee847b54ac1739298841 (diff)
Organize installs
-rw-r--r--.emacs.d/init.el49
1 files changed, 25 insertions, 24 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 943efbf..326ee14 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -74,6 +74,8 @@
:font "JetBrains Mono"
:height apollo/default-font-size
:weight 'regular)
+(use-package all-the-icons
+ :ensure t)
;;Dashboard settings
(use-package dashboard
@@ -110,8 +112,6 @@
(use-package doom-themes
:init (load-theme 'doom-dracula t))
-(use-package all-the-icons
- :ensure t)
(use-package the-matrix-theme)
@@ -120,6 +120,14 @@
:init (doom-modeline-mode 1)
:custom ((doom-modeline-height 35)))
+(use-package counsel
+ :bind (("C-M-j" . 'counsel-switch-buffer)
+ :map minibuffer-local-map
+ ("C-r" . 'counsel-minibuffer-history)
+ ("C-'" . 'counsel-find-file))
+ :config
+ (counsel-mode 1))
+
(use-package which-key
:init (which-key-mode)
:diminish which-key-mode
@@ -153,13 +161,6 @@
:ensure t
:init (all-the-icons-ivy-rich-mode 1))
-(use-package counsel
- :bind (("C-M-j" . 'counsel-switch-buffer)
- :map minibuffer-local-map
- ("C-r" . 'counsel-minibuffer-history)
- ("C-'" . 'counsel-find-file))
- :config
- (counsel-mode 1))
(use-package helpful
:custom
@@ -522,21 +523,21 @@
(use-package sudo-edit)
-(use-package eaf
- :load-path "~/.emacs.d/site-lisp/emacs-application-framework"
- :custom
- ; See https://github.com/emacs-eaf/emacs-application-framework/wiki/Customization
- (eaf-browser-continue-where-left-off t)
- (eaf-browser-enable-adblocker t)
- (browse-url-browser-function 'eaf-open-browser)
- :config
- (require 'eaf-browser)
- (require 'eaf-pdf-viewer)
- (require 'eaf-terminal)
- (defalias 'browse-web #'eaf-open-browser)
- (eaf-bind-key scroll_up "C-n" eaf-pdf-viewer-keybinding)
- (eaf-bind-key scroll_down "C-p" eaf-pdf-viewer-keybinding)
- (eaf-bind-key nil "M-q" eaf-browser-keybinding))
+;; (use-package eaf
+;; :load-path "~/.emacs.d/site-lisp/emacs-application-framework"
+;; :custom
+;; ; See https://github.com/emacs-eaf/emacs-application-framework/wiki/Customization
+;; (eaf-browser-continue-where-left-off t)
+;; (eaf-browser-enable-adblocker t)
+;; (browse-url-browser-function 'eaf-open-browser)
+;; :config
+;; (require 'eaf-browser)
+;; (require 'eaf-pdf-viewer)
+;; (require 'eaf-terminal)
+;; (defalias 'browse-web #'eaf-open-browser)
+;; (eaf-bind-key scroll_up "C-n" eaf-pdf-viewer-keybinding)
+;; (eaf-bind-key scroll_down "C-p" eaf-pdf-viewer-keybinding)
+;; (eaf-bind-key nil "M-q" eaf-browser-keybinding))
(custom-set-variables