Compare commits
No commits in common. "07b7a2d9a31442bb9a21576cd9bcde71cb492284" and "fb89f2026c90a7912dd5d83d001c3354eb85ae6b" have entirely different histories.
07b7a2d9a3
...
fb89f2026c
27
config.org
27
config.org
|
@ -34,13 +34,13 @@ The provided default ~config.el~
|
||||||
|
|
||||||
;; Figure out what the name and size of the font are going to be based on the system type and
|
;; Figure out what the name and size of the font are going to be based on the system type and
|
||||||
;; hostname
|
;; hostname
|
||||||
(let ((nm/font-name (cond ((or IS-MAC IS-WINDOWS) "Iosevka Nerd Font")
|
(let ((nm/font-name (cond ((eq system-type 'darwin) "Iosevka Nerd Font")
|
||||||
(t "Iosevka")))
|
(t "Iosevka")))
|
||||||
(nm/font-size (cond (IS-MAC 11)
|
(nm/font-size (cond ((eq system-type 'darwin) 11)
|
||||||
((or IS-WINDOWS (string= (system-name)) "wsl") 16)
|
((string= (system-name) "wsl") 16)
|
||||||
(t 13)))
|
(t 13)))
|
||||||
(nm/variable-font-size (cond (IS-MAC 13)
|
(nm/variable-font-size (cond ((eq system-type 'darwin) 13)
|
||||||
((or IS-WINDOWS (string= (system-name)) "wsl") 19)
|
((string= (system-name) "wsl") 19)
|
||||||
(t 15))))
|
(t 15))))
|
||||||
(setq doom-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light)
|
(setq doom-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light)
|
||||||
doom-unicode-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light)
|
doom-unicode-font (font-spec :family nm/font-name :size nm/font-size :weight 'semi-light)
|
||||||
|
@ -49,7 +49,7 @@ The provided default ~config.el~
|
||||||
;;
|
;;
|
||||||
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
|
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
|
||||||
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
||||||
;; refresh your font settings. If Emacs still can't find your font, it likely
|
;; refresh your font settings. )If Emacs still can't find your font, it likely
|
||||||
;; wasn't installed correctly. Font issues are rarely Doom issues!
|
;; wasn't installed correctly. Font issues are rarely Doom issues!
|
||||||
|
|
||||||
;; There are two ways to load a theme. Both assume the theme is installed and
|
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||||
|
@ -773,8 +773,10 @@ in
|
||||||
**** [[https://github.com/suonlight/multi-vterm][multi-vterm]]
|
**** [[https://github.com/suonlight/multi-vterm][multi-vterm]]
|
||||||
Add ergonomic support for multiple vterm terminals
|
Add ergonomic support for multiple vterm terminals
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(when (not IS-WINDOWS)
|
(use-package! multi-vterm
|
||||||
(use-package! multi-vterm))
|
;; :bind (("C-c o M" . multi-vterm)
|
||||||
|
;; ("C-c o m" . multi-vterm-project))
|
||||||
|
)
|
||||||
#+end_src
|
#+end_src
|
||||||
* Programming
|
* Programming
|
||||||
** General Editing
|
** General Editing
|
||||||
|
@ -958,11 +960,6 @@ Use ~elfeed~ for RSS. Doom provides most of the configuration, but we'll make a
|
||||||
(make-directory elfeed-db-directory t))
|
(make-directory elfeed-db-directory t))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Email
|
** Email
|
||||||
Do a lil sneaky to make this linux only
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
(when IS-LINUX
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
Use ~mu4e~ for email. Most of the bootstrap is provided by doom emacs.
|
Use ~mu4e~ for email. Most of the bootstrap is provided by doom emacs.
|
||||||
First, tell mu4e to use msmtp
|
First, tell mu4e to use msmtp
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -1050,10 +1047,6 @@ Now setup notifications
|
||||||
(add-hook 'after-init-hook #'mu4e-alert-enable-mode-line-display))
|
(add-hook 'after-init-hook #'mu4e-alert-enable-mode-line-display))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
#+begin_src emacs-lisp
|
|
||||||
)
|
|
||||||
#+end_src
|
|
||||||
|
|
||||||
** [[https://github.com/stsquad/emacs_chrome][Edit with Emacs]]
|
** [[https://github.com/stsquad/emacs_chrome][Edit with Emacs]]
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package! edit-server
|
(use-package! edit-server
|
||||||
|
|
4
init.el
4
init.el
|
@ -53,7 +53,7 @@
|
||||||
vc ; version-control and Emacs, sitting in a tree
|
vc ; version-control and Emacs, sitting in a tree
|
||||||
|
|
||||||
:term
|
:term
|
||||||
(:if (not IS-WINDOWS) vterm)
|
vterm ; the best terminal emulation in Emacs
|
||||||
|
|
||||||
:checkers
|
:checkers
|
||||||
(syntax +childframe) ; tasing you for every semicolon you forget
|
(syntax +childframe) ; tasing you for every semicolon you forget
|
||||||
|
@ -103,7 +103,7 @@
|
||||||
plantuml
|
plantuml
|
||||||
|
|
||||||
:email
|
:email
|
||||||
(:if IS-LINUX (mu4e +org))
|
(mu4e +org)
|
||||||
|
|
||||||
:app
|
:app
|
||||||
(rss +org) ; emacs as an RSS reader
|
(rss +org) ; emacs as an RSS reader
|
||||||
|
|
|
@ -58,6 +58,7 @@
|
||||||
(package! smart-hungry-delete)
|
(package! smart-hungry-delete)
|
||||||
(package! solarized-theme)
|
(package! solarized-theme)
|
||||||
(package! deadgrep)
|
(package! deadgrep)
|
||||||
|
(package! multi-vterm)
|
||||||
(package! grip-mode)
|
(package! grip-mode)
|
||||||
(package! org-protocol-capture-html)
|
(package! org-protocol-capture-html)
|
||||||
(package! org-superstar)
|
(package! org-superstar)
|
||||||
|
@ -76,9 +77,4 @@
|
||||||
(package! keychain-environment)
|
(package! keychain-environment)
|
||||||
(package! hotfuzz)
|
(package! hotfuzz)
|
||||||
(package! alert)
|
(package! alert)
|
||||||
|
(package! mu4e-alert)
|
||||||
(when IS-LINUX
|
|
||||||
(package! mu4e-alert))
|
|
||||||
|
|
||||||
(when (not IS-WINDOWS)
|
|
||||||
(package! multi-vterm))
|
|
||||||
|
|
Loading…
Reference in New Issue