Testing out theme magic and emojis in md/org
parent
452126de6c
commit
b87f986342
|
@ -9,5 +9,5 @@ t:/home/tuan/Templates
|
||||||
w:/home/tuan/workspace_l/Projects
|
w:/home/tuan/workspace_l/Projects
|
||||||
k:/home/tuan/Documents/CTF/TryHackMe/VulnUniversity
|
k:/home/tuan/Documents/CTF/TryHackMe/VulnUniversity
|
||||||
q:/home/tuan/.nextcloud/Quick Drop
|
q:/home/tuan/.nextcloud/Quick Drop
|
||||||
':/home/tuan/.emacs.d
|
':/home/tuan
|
||||||
e:/home/tuan/Documents/CTF/TryHackMe/Ice/2_Recon
|
e:/home/tuan/Documents/CTF/TryHackMe/Ice/2_Recon
|
||||||
|
|
|
@ -79,6 +79,12 @@
|
||||||
(use-package swiper
|
(use-package swiper
|
||||||
:bind (("C-s" . 'swiper)))
|
:bind (("C-s" . 'swiper)))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
*** ox-twbs
|
||||||
|
~Export org-mode docs as HTML compatible with Twitter Bootstrap.~
|
||||||
|
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package ox-twbs)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
*** org-bullets
|
*** org-bullets
|
||||||
~utf-8 bullets for org-mode~
|
~utf-8 bullets for org-mode~
|
||||||
|
@ -119,10 +125,32 @@
|
||||||
(menu-bar-mode -1)
|
(menu-bar-mode -1)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Org Mode
|
* Emacs Configuration
|
||||||
|
** Symbolic Links
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(setq vc-follow-symlinks t)
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
* Mode Configuration
|
||||||
|
** Org-Mode
|
||||||
Always unfold every section in org files.
|
Always unfold every section in org files.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(add-hook 'org-mode-hook #'org-show-all)
|
(add-hook 'org-mode-hook #'org-show-all)
|
||||||
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
|
#+END_SRC
|
||||||
|
|
||||||
|
Enable org-bullets and hide leading stars.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(add-hook 'org-mode-hook
|
||||||
|
(lambda ()
|
||||||
|
(org-bullets-mode 1)))
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
* OS
|
||||||
|
** Theme Magic
|
||||||
|
~🎨 Apply your Emacs theme to the rest of Linux, using magic. Also works on Mac.~
|
||||||
|
|
||||||
|
#+Begin_SRC emacs-lisp
|
||||||
|
(use-package theme-magic)
|
||||||
|
(theme-magic-export-theme-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
|
@ -7,10 +7,11 @@
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
'(moe-theme org-bullets ivy-prescient prescient powerline-evil evil use-package)))
|
'(theme-magic use-package ox-twbs org-bullets no-littering moe-theme ivy-prescient evil-collection diminish counsel)))
|
||||||
|
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
)
|
'(org-hide ((t (:foreground "#000000")))))
|
||||||
|
|
Loading…
Reference in New Issue