diff --git a/banner.txt b/banner.txt new file mode 100644 index 0000000..e231c56 --- /dev/null +++ b/banner.txt @@ -0,0 +1,9 @@ + █████ ███▄ ▄███▓ ▄▄▄ ▄████▄ ██████ +▓█ ▀ ▓██▒▀█▀ ██▒▒████▄ ▒██▀ ▀█ ▒██ ░ +▒███ ▓██ ▓██░▒██ ▀█▄ ▒▓█ ▄ ░ ▓██▄▄ +▒▓█ ▄ ▒██ ▒██ ░██▄▄▄▄██ ▒▓▓▄ ▄██▒ ▒ ██▒ +░▒████▒▒██▒ ░██▒ ▓█ ▓██▒▒ ▓███▀ ░▒██████▒▒ +░░ ▒░ ░░ ▒░ ░ ░ ▒▒ ▓▒█░░ ░▒ ▒ ░▒ ▒▓▒ ▒ ░ + ░ ░ ░░ ░ ░ ▒ ▒▒ ░ ░ ▒ ░ ░▒ ░ ░ + ░ ░ ░ ░ ▒ ░ ░ ░ ░ + ░ ░ ░ ░ ░░ ░ ░ diff --git a/config.org b/config.org index df787b5..2823c21 100644 --- a/config.org +++ b/config.org @@ -226,6 +226,11 @@ Install the package, enable it and ensure that it always is installed: :init (nerd-icons-ivy-rich-mode 1)) #+END_SRC +*** Default Font +#+BEGIN_SRC emacs-lisp + (set-frame-font "Deja Vu Sans Mono 14") + (add-hook 'prog-mode-hook (lambda () (text-scale-increase 5))) +#+END_SRC *** Emacs Dashboard A startup dashboard for Emacs, replacing the boring old one. Install the package, enable it and ensure that it always is installed: @@ -245,12 +250,13 @@ Install the package, enable it and ensure that it always is installed: ;; Set the title (setq dashboard-banner-logo-title "The EMACS operating system.") ;; Set the banner - (setq dashboard-startup-banner '3) + ;;(setq dashboard-startup-banner '3) ;; Value can be ;; 'official which displays the official emacs logo ;; 'logo which displays an alternative emacs logo ;; 1, 2 or 3 which displays one of the text banners ;; "path/to/your/image.png" which displays whatever image you would prefer + (setq dashboard-startup-banner "~/.emacs.d/banner.txt") ;; Content is not centered by default. To center, set (setq dashboard-center-content t) @@ -1308,9 +1314,9 @@ LSP Bridge is meant to be a super fast LSP integration. #+END_SRC **** Flymake Integration -Integrate lsp-bridge with flymake to provide error messages. +Integrate lsp-bridge with flymake to provide error messages. (Disabled for now as it causes "let: Wrong type argument: listp, t" error) -#+BEGIN_SRC emacs-lisp ++BEGIN_SRC emacs-lisp (use-package flymake-bridge :ensure t :straight '(flymake-bridge :type git :host github :repo "liuyinz/flymake-bridge") @@ -1323,7 +1329,7 @@ Integrate lsp-bridge with flymake to provide error messages. (setq flymake-start-on-flymake-mode t) (setq flymake-start-syntax-check-on-find-file t) ) -#+END_SRC ++END_SRC ** Ranger This is a minor mode that runs within dired, it emulates many of ranger's (terminal file manager) features. This minor mode shows a diff --git a/dashboard.png b/dashboard.png index 9482299..6b62b82 100644 Binary files a/dashboard.png and b/dashboard.png differ