blob: 5f34ce4350770cf0c255a86ff91e2a40841dc597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
;; -*- no-byte-compile: t; -*-
;;; ~/.doom.d/packages.el
;;; Examples:
;; (package! some-package)
;; (package! another-package :recipe (:host github :repo "username/repo"))
;; (package! builtin-package :disable t)
; General
(package! elcord) ; to flex
(package! wttrin) ; weather in emacs? yes please
; Coding
(package! counsel-etags) ; tags are cool
(package! py-yapf) ; formatting
(package! omnisharp) ; unit testing
; Arduino
(package! arduino-mode) ; mandatory, though I might make my own module for this
(package! company-arduino) ; intellisense EVERYTHING
|