diff --git a/.emacs b/.emacs index dc7abc1..2c12fc1 100644 --- a/.emacs +++ b/.emacs @@ -59,7 +59,7 @@ (package-install 'all-the-icons)) ;; Set default font: (add-to-list 'default-frame-alist - '(font . "Source Code Pro-24")) + '(font . "Source Code Pro-18")) ;;+++++++ ;;auctex: (setenv "PATH" (concat "/Library/TeX/texbin:" @@ -120,7 +120,9 @@ ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. -) + '(package-selected-packages + (quote + (docker-compose-mode markdown-mode org-ref doom-modeline all-the-icons doom-themes which-key helm use-package)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/SourceCodePro_FontsOnly-1.009.zip b/SourceCodePro_FontsOnly-1.009.zip new file mode 100644 index 0000000..f510380 Binary files /dev/null and b/SourceCodePro_FontsOnly-1.009.zip differ diff --git a/source-fonts.sh b/source-fonts.sh new file mode 100755 index 0000000..41bf50e --- /dev/null +++ b/source-fonts.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +wget https://github.com/downloads/adobe/Source-Code-Pro/SourceCodePro_FontsOnly-1.009.zip +unzip SourceCodePro_FontsOnly-1.009.zip +mkdir /usr/share/fonts/truetype/source-code-pro +cp SourceCodePro_FontsOnly-1.009/*.ttf /usr/share/fonts/truetype/source-code-pro +