Fork me on GitHub
#emacs
<
2020-06-18
>
Bobbi Towers00:06:08

I put a link to that (and Spacemacs and Doom Emacs) but it seemed appropriate (and consistent with the other editors) to explain the most "vanilla" way as the primary method. My personal list: • evil • rainbow-delimiters • company • cyberpunk-theme • nyan-mode nyantocat • aggressive-indent Obviously not all of these are "essential" 😆 And I'm probably missing some that I shouldn't be.

bartuka01:06:23

I have been doing some "truly essential" config myself for a while, my current packages are • clojure-mode • cider • paredit • toggle-test • clj-refactor • magit • projectile • company • docker (bc every project I work has a docker-compose.yml setup)

bartuka01:06:24

no themes, only

(defun bk/default-slate-grey ()
  (interactive)
  (set-background-color "DarkSlateGray")
  (set-face-background 'mode-line "Wheat")
  (set-face-foreground 'mode-line "DarkSlateGray")
  (set-foreground-color "Wheat")
  (set-face-foreground 'ido-subdir "orange")
  (bk/set-monaco-font))