diff options
author | Griffin Smith <root@gws.fyi> | 2018-03-29T22·10-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2018-03-29T22·10-0400 |
commit | d88fb3194f2a50efa6d407e85d47d14da3700ff3 (patch) | |
tree | 3aa434e148f4f767a992c87b144d536c0e10b689 /packages.el |
Initial commit
Diffstat (limited to 'packages.el')
-rw-r--r-- | packages.el | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/packages.el b/packages.el new file mode 100644 index 000000000000..0ef4289c852d --- /dev/null +++ b/packages.el @@ -0,0 +1,58 @@ +;; -*- no-byte-compile: t; -*- +;;; private/grfn/packages.el + +;; Editor +(package! solarized-theme) +(package! fill-column-indicator) +(package! flx) +(package! general + :recipe (general + :fetcher github + :repo "noctuid/general.el")) +(package! org-clubhouse + :recipe (org-clubhouse + :fetcher file + :path "~/code/urb/org-clubhouse")) +(package! fill-column-indicator) +(package! writeroom-mode) +(package! dash) + +;; Slack etc +(package! slack) +(package! alert) + +;; Git +(package! evil-magit) +(package! magithub) +(package! magit-gh-pulls) +(package! marshal) +; (package! auth-password-store) + +;; Elisp +(package! dash) +(package! dash-functional) +(package! s) +(package! request) + +;; Haskell +(package! lsp-mode) +(package! lsp-ui :recipe (:fetcher github :repo "emacs-lsp/lsp-ui")) +(package! lsp-haskell) +(package! company-lsp) + +;; Rust +(package! cargo) + +;; Elixir +(package! flycheck-credo) +(package! flycheck-mix) +(package! flycheck-dialyxir) + +;; Lisp +(package! paxedit) + +;; Javascript +(package! flow-minor-mode) +(package! flycheck-flow) +(package! company-flow) +(package! prettier-js) |