Browse Source

Adding the Source Code Pro Fonts

rs101
parent
commit
fe25fd0804
3 changed files with 11 additions and 2 deletions
  1. +4
    -2
      .emacs
  2. BIN
      SourceCodePro_FontsOnly-1.009.zip
  3. +7
    -0
      source-fonts.sh

+ 4
- 2
.emacs View File

@ -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.


BIN
SourceCodePro_FontsOnly-1.009.zip View File


+ 7
- 0
source-fonts.sh View File

@ -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

Loading…
Cancel
Save