]> git.armaanb.net Git - config.org.git/commitdiff
Remove unused configs and packages
authorArmaan Bhojwani <me@armaanb.net>
Sun, 2 May 2021 23:08:04 +0000 (19:08 -0400)
committerArmaan Bhojwani <me@armaanb.net>
Sun, 2 May 2021 23:08:04 +0000 (19:08 -0400)
config.org

index 372b6b07d2a087b5a262139c831fc6fedfe2e196..322b7a453473bd9a56437001e36c90627761d48d 100644 (file)
@@ -430,39 +430,6 @@ Contexts are a not very well known feature of mu4e that makes it super easy to m
     :hook ((mu4e-compose-mode . flyspell-mode)
            (mu4e-view-mode-hook . turn-on-visual-line-mode)))
 #+end_src
-** Calendar
-#+begin_src emacs-lisp
-  (use-package calfw)
-  (use-package calfw-org)
-  (use-package calfw-ical)
-
-  (defun acheam-calendar ()
-    "Open a calendar."
-    (interactive)
-    (shell-command "vdirsyncer sync")
-    (let ((default-directory "~/.local/share/vdirsyncer/"))
-      (cfw:open-calendar-buffer
-       :contents-sources
-       (list
-        (cfw:ical-create-source "School" (expand-file-name "school/abhojwani22@nobles.edu.ics") "Green")
-        (cfw:ical-create-source "Personal" (expand-file-name "mailbox/Y2FsOi8vMC8zMQ.ics") "Blue")
-        (cfw:ical-create-source "Birthdays" (expand-file-name "mailbox/Y2FsOi8vMS8w.ics") "Gray")
-        ))))
-#+end_src
-** IRC
-Another file has more specific network configuration.
-#+begin_src emacs-lisp
-  (use-package circe
-    :config (load-file "~/.emacs.d/irc.el"))
-
-  (use-package circe-chanop
-    :straight (:type built-in)
-    :after circe)
-
-  (use-package circe-color-nicks
-    :straight (:type built-in)
-    :after circe)
-#+end_src
 ** Default browser
 Set EWW as default browser except for videos.
 #+begin_src emacs-lisp
@@ -523,15 +490,6 @@ Use Emacs globally. Use the Emacs daemon and bind a key in your wm to
 #+begin_src emacs-lisp
   (use-package emacs-everywhere)
 #+end_src
-** Eshell
-#+begin_src emacs-lisp
-  (setq eshell-prompt-function
-        (lambda nil
-          (propertize (concat
-                       "\n" (eshell/pwd) " ➤ ")
-                      'face '(:foreground "cyan")))
-        eshell-highlight-prompt nil)
-#+end_src
 * Emacs IDE
 ** Code cleanup
 #+begin_src emacs-lisp