diff --git a/config/.local/share/ranger/bookmarks b/config/.local/share/ranger/bookmarks index 7b9624d..0d52b08 100644 --- a/config/.local/share/ranger/bookmarks +++ b/config/.local/share/ranger/bookmarks @@ -9,5 +9,5 @@ t:/home/tuan/Templates w:/home/tuan/workspace_l/Projects k:/home/tuan/Documents/CTF/TryHackMe/VulnUniversity q:/home/tuan/.nextcloud/Quick Drop -':/home/tuan/.emacs.d +':/home/tuan e:/home/tuan/Documents/CTF/TryHackMe/Ice/2_Recon diff --git a/emacs/.emacs.d/config.org b/emacs/.emacs.d/config.org index f658678..d2921f7 100644 --- a/emacs/.emacs.d/config.org +++ b/emacs/.emacs.d/config.org @@ -79,7 +79,13 @@ (use-package swiper :bind (("C-s" . 'swiper))) #+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 ~utf-8 bullets for org-mode~ @@ -119,10 +125,32 @@ (menu-bar-mode -1) #+END_SRC -* Org Mode - Always unfold every section in org files. +* Emacs Configuration +** Symbolic Links + #+BEGIN_SRC emacs-lisp + (setq vc-follow-symlinks t) + #+END_SRC - #+BEGIN_SRC emacs-lisp +* Mode Configuration +** Org-Mode + Always unfold every section in org files. + + #+BEGIN_SRC emacs-lisp (add-hook 'org-mode-hook #'org-show-all) -(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1))) - #+END_SRC + #+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 diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index 32e77e2..ca34c62 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -7,10 +7,11 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(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 was added by Custom. ;; 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. - ) + '(org-hide ((t (:foreground "#000000")))))