diff options
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 3b58468..c780369 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -103,18 +103,20 @@ to be installed.") (require 'use-package) (setq use-package-always-ensure t) -(load "functions.el") +(load "functions") (load "keys.el") (load "all-the-icons-dired.el") ;(load "secret") (load "exwm-holyK-firefox") (load "org-config") +;(load "email-module") (load-file custom-file) ;; Load custom.el ;; if you are using guix, emacs-exwm will look for ~/.exwm.el ;; in case we are not using guix we are gonna load it anyway here, just to get the ;; transperancy and other modifications (load ".exwm") +(start-polybar) (setq inhibit-startup-message nil) (defvar apollo/default-font-size 130) @@ -228,7 +230,8 @@ to be installed.") ("C-k" . ivy-previous-line) ("C-d" . ivy-reverse-i-search-kill)) :config - (ivy-mode 1)) + (ivy-mode 1) + (setq ivy-use-selectable-prompt t)) (ivy-rich-mode 1) (all-the-icons-ivy-rich-mode 1) |