doomemacs/modules/lang/ruby/packages.el
Henrik Lissner c399c07694
Add :tools lsp checks for +lsp flag
Also:
- Reorganizes some :lang modules' packages.el file.
- Adds setuptools check in lang/python
- Adds javac check in lang/java
- Removes the depends-on! macro
2019-04-24 18:16:05 -04:00

30 lines
539 B
EmacsLisp

;; -*- no-byte-compile: t; -*-
;;; lang/ruby/packages.el
;; Major modes
(package! enh-ruby-mode)
(package! yard-mode)
;; REPL
(package! inf-ruby)
(when (featurep! :completion company)
(package! company-inf-ruby))
;; Programming environment
(package! rubocop)
(unless (featurep! +lsp)
(package! robe))
;; Project tools
(package! bundler)
(package! rake)
;; Environment management
(when (featurep! +rbenv)
(package! rbenv))
(when (featurep! +rvm)
(package! rvm))
;; Testing frameworks
(package! rspec-mode)
(package! minitest)