diff --git a/config.el b/config.el index 966445d..f3b2c3b 100644 --- a/config.el +++ b/config.el @@ -12,6 +12,8 @@ ;; accept. For example: (setq doom-font (font-spec :family "JetBrains Mono" :size 14)) +(setq fancy-splash-image (concat doom-private-dir "splash.png")) + ;; There are two ways to load a theme. Both assume the theme is installed and ;; available. You can either set `doom-theme' or manually load a theme with the ;; `load-theme' function. This is the default: @@ -364,6 +366,13 @@ "s-" #'end-of-buffer "M-s-v" #'consult-yank-from-kill-ring) +(map! :map lispy-mode-map + "M-" nil + "M-" nil) +(map! :map lispy-mode-map-lispy + "M-" nil + "M-" nil) + (cond ((string-equal system-type "darwin") (setq frame-resize-pixelwise t diff --git a/init.el b/init.el index c507984..8fded25 100644 --- a/init.el +++ b/init.el @@ -60,7 +60,7 @@ fold ; (nigh) universal code folding format ; automated prettiness ;;god ; run Emacs commands without modifier keys - ;; lispy ; vim for lisp, for people who don't like vim + lispy ; vim for lisp, for people who don't like vim ;; multiple-cursors ; editing in many places at once ;; objed ; text object editing for the innocent ;; parinfer ; turn lisp into python, sort of diff --git a/splash.png b/splash.png new file mode 100644 index 0000000..5409080 Binary files /dev/null and b/splash.png differ