;;; Emacs Bedrock ;;; ;;; Mixin: Development tools ;;; Usage: Append or require this file from init.el for some software ;;; development-focused packages. ;;; Contents: ;;; ;;; - Version Control ;;; - Common file types ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Version Control ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Magit: best Git client to ever exist (use-package magit :ensure t) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Common file types ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (use-package markdown-mode :ensure t) (use-package yaml-mode :ensure t) (use-package json-mode :ensure t) ;; You're almost certain to find a mode for the language you're looking for. ;; Search the internet to find the right one.