Update emacs.org
This commit is contained in:
parent
8a32439769
commit
072736f56d
1 changed files with 20 additions and 11 deletions
|
@ -366,7 +366,7 @@ Cause emacs overlay lol
|
||||||
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
(setq doom-themes-enable-bold t ; if nil, bold is universally disabled
|
||||||
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
doom-themes-enable-italic t) ; if nil, italics is universally disabled
|
||||||
;; load the theme
|
;; load the theme
|
||||||
(load-theme 'doom-xcode t)
|
(load-theme 'doom-wilmersdorf t)
|
||||||
|
|
||||||
(doom-themes-org-config)
|
(doom-themes-org-config)
|
||||||
|
|
||||||
|
@ -404,16 +404,16 @@ Cause emacs overlay lol
|
||||||
#+end_src
|
#+end_src
|
||||||
** Custom Modeline
|
** Custom Modeline
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package doom-modeline
|
;; (use-package doom-modeline
|
||||||
:ensure t
|
;; :ensure t
|
||||||
;; :hook (after-init . doom-modeline-mode)
|
;; ;; :hook (after-init . doom-modeline-mode)
|
||||||
:init (doom-modeline-mode 1)
|
;; :init (doom-modeline-mode 1)
|
||||||
:custom (
|
;; :custom (
|
||||||
(doom-modeline-height 25)
|
;; (doom-modeline-height 35)
|
||||||
(doom-modeline-bar-width 4)
|
;; (doom-modeline-bar-width 4)
|
||||||
(doom-modeline-major-mode-icon nil)
|
;; (doom-modeline-major-mode-icon nil)
|
||||||
(doom-modeline-modal-modern-icon nil)
|
;; (doom-modeline-modal-modern-icon nil)
|
||||||
))
|
;; ))
|
||||||
#+end_src
|
#+end_src
|
||||||
** Hide Modeline
|
** Hide Modeline
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -1446,6 +1446,15 @@ RELEASE ME
|
||||||
;; erc-autojoin-channels-alist '(("irc-libera.chat" "#systemcrafters" "#emacs"))
|
;; erc-autojoin-channels-alist '(("irc-libera.chat" "#systemcrafters" "#emacs"))
|
||||||
erc-kill-buffer-on-part 8)
|
erc-kill-buffer-on-part 8)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** fancy-compilation
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
;; to get past codeberg blocks in my country
|
||||||
|
(use-package (fancy-compilation :type git :host github :repo "emacsmirror/fancy-compilation")
|
||||||
|
:commands (fancy-compilation-mode))
|
||||||
|
|
||||||
|
(with-eval-after-load 'compile
|
||||||
|
(fancy-compilation-mode))
|
||||||
|
#+end_src
|
||||||
* Org Mode Configuration Setup
|
* Org Mode Configuration Setup
|
||||||
** Babel Languages
|
** Babel Languages
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
Loading…
Reference in a new issue