diff options
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 67 |
1 files changed, 36 insertions, 31 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index faa235c..bccc2ba 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -26,7 +26,6 @@ ;; Request some packages: (defconst my-package-list '(org-snooze all-the-icons - dashboard general doom-themes doom-modeline @@ -53,8 +52,6 @@ magit elfeed elfeed-goodies - eshell -; multi-vterm paredit corfu monkeytype @@ -124,7 +121,7 @@ to be installed.") (setq visible-bell t) - +(setq vterm-shell "~/.guix-profile/bin/zsh") (column-number-mode) (global-display-line-numbers-mode 0) @@ -153,38 +150,44 @@ to be installed.") :weight 'regular) ;; Dashboard settings -(require 'dashboard) -(dashboard-setup-startup-hook) - -(setq dashboard-items '((recents . 5) - (bookmarks . 5))) -(setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))) -(setq dashboard-item-names '(("Recent Files:" . "Recent Files:") - ("Bookmarks:" . "Study:"))) -;; Set the banner -(setq dashboard-startup-banner "~/dotfiles/pictures/medicine/plague-doctor-s.png") -;; Set the title -(setq dashboard-banner-logo-title "Is that a flying flower?") -;; (setq dashboard-init-info "Bring me your sick and wounded!") -;; Content is not centered by default. To center, set -(setq dashboard-set-init-info t) -(setq dashboard-center-content t) -(setq dashboard-set-navigator t) -(setq dashboard-set-heading-icons t) -(setq dashboard-set-file-icons t) -(setq dashboard-show-shortcuts nil) -(setq dashboard-set-footer t) -(setq dashboard-footer-messages '("Welcome to the Church Of Emacs")) -(setq dashboard-footer-icon (all-the-icons-octicon "broadcast" - :height 1.15 - :v-adjust -0.05 - :face 'font-lock-keyword-face)) +(use-package dashboard + :ensure t + :config + (dashboard-setup-startup-hook) + + (setq dashboard-items '((recents . 5) + (bookmarks . 5))) + + (setq initial-buffer-choice (lambda () (get-buffer-create "*dashboard*"))) + (setq dashboard-item-names '(("Recent Files:" . "Recent Files:") + ("Bookmarks:" . "Study:"))) + ;; Set the banner + (setq dashboard-startup-banner "~/dotfiles/pictures/medicine/plague-doctor-s.png") + ;; Set the title + (setq dashboard-banner-logo-title "Is that a flying flower?") + ;; (setq dashboard-init-info "Bring me your sick and wounded!") + + ;; Content is not centered by default. To center, set + (setq dashboard-set-init-info t) + (setq dashboard-center-content t) + (setq dashboard-set-navigator t) + (setq dashboard-set-heading-icons t) + (setq dashboard-set-file-icons t) + (setq dashboard-show-shortcuts nil) + (setq dashboard-set-footer t) + (setq dashboard-footer-messages '("Welcome to the Church Of Emacs")) + (setq dashboard-footer-icon (all-the-icons-octicon "broadcast" + :height 1.15 + :v-adjust -0.05 + :face 'font-lock-keyword-face))) + (defvar eshell-path-env (getenv "~/.local/bin")) -(load-theme 'doom-ayu-dark t) +(load-theme 'doom-old-hope t) (doom-modeline-mode 1) + (setq doom-modeline-height 35) ;; (use-package counsel @@ -469,3 +472,5 @@ to be installed.") +(server-start) + |