emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
porkostomus 2020-06-18T00:04:08.458900Z

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.

bartuka 2020-06-18T01:12:23.461500Z

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)

bartuka 2020-06-18T01:13:24.461800Z

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))