emacs-config/init.org.d/80-misc-end.org

3.6 KiB

Other Configurations/Packages

Intro

This is where other packages are configured, that are very short, not worthy of their own file

Ido

Ido is a autocomplete package for emacs' commands

  (use-package ido
        :config
        (setq ido-everywhere t
           ido-virtual-buffers t
           ido-use-faces t)
        (ido-mode 1))

EWW

Emacs Web WOWSER! This config just sets the download directory

  (use-package eww
    :custom
    (eww-download-directory "~/dls" "location to put downloaded files")
    :config
    (setq eww-download-directory "~/dls"))

Fancy Battery

This shows the battery level on the emacs modeline

  (use-package fancy-battery
    :commands
    fancy-battery-mode
    :bind
    ("s-b b" . fancy-battery-mode))

Rainbow Delimiter

color delimiters (parentheses, brackets, braces, etc) according to their level/depth.

  (use-package rainbow-delimiters
    :hook (emacs-lisp-mode . rainbow-delimiters-mode))

Org Tree Slide

do presentations in Org mode

  (use-package org-tree-slide
        :after org
        :commands
        org-tree-slide-mode
        :config
        (define-key org-tree-slide-mode-map (kbd "<f8>") 'org-tree-slide-mode-next-tree)
        (define-key org-tree-slide-mode-map (kbd "<f9>") 'org-tree-slide-move-next-tree))

Emacs Shell

This sets the prompt to a lambda, for aesthetic reasons

  (setq eshell-prompt-function (lambda nil
  (if (= (user-uid) 0) " #λ " " λ ")))
  (setq eshell-highlight-prompt nil)

Undo Tree

a visualizer for Emacs' cool but confusing undo/history system

  (use-package undo-tree
    :diminish
    :config
    (global-undo-tree-mode))

Elgrep

a built in grep command in emacs

  (use-package elgrep
    :commands elgrep)

Abbrev

Abbrev is helpful for typing long commands, but I don't need to know it in the modeline

  (diminish 'abbrev)

Pinentry

use emacs' internal pinentry

  (use-package pinentry
    :config
    ;; let's get encryption established
    (setenv "GPG_AGENT_INFO" nil)  ;; use emacs pinentry
    (setq auth-source-debug t)

    (setq epg-gpg-program "gpg2")  ;; not necessary
    (require 'epa-file)
    (epa-file-enable)
    (setq epa-pinentry-mode 'loopback)
    (pinentry-start)

    (require 'org-crypt)
    (org-crypt-use-before-save-magic))

Elfeed Web

Elfeed is a emacs package for reading RSS Web News.

  (use-package elfeed
          :commands
          elfeed
          elfeed-update
          :custom
          (elfeed-db-directory (concat user-emacs-directory "/elfeed")
                               "location for elfeed to put it's database")
          (elfeed-feeds '(("https://feeds.bbci.co.uk/news/technology/rss.xml" bbc technology)
                         ("https://feeds.feedburner.com/rsscna/engnews" taiwan central focustaiwan)
                         ("https://hnrss.org/frontpage.atom" hacker)
                         ("https://www.kernel.org/feeds/kdist.xml" linux kernel)
                         ("https:/hund.tty1.se/feed.xml" hund blog)
                         ("https://opensource.com/feed" opensource)
                         ("https://rss.slashdot.org/Slashdot/slashdot" slashdot technology)
                         ("https://www.cnet.com/rss/news/" cnet technology))
                        "links to the news sources and keywords associated to them"))