diff --git a/init.el b/init.el index d521a5af4..3524dd58d 100644 --- a/init.el +++ b/init.el @@ -81,10 +81,8 @@ module-web ; for the 2.0'er ;; Experimental - ;;module-crystal ; ruby at the speed of c - ;;module-eshell ; for inferior OSes *cough*windows - ;;module-nim ; look out Abraham - ;;module-pony ; Dear Princess Compiler + ;;module-eshell ; for inferior OSes *cough*windows + ;;module-pony ; Dear Princess Compiler ;; Organizational/Notes module-org ; for organized fearless leader diff --git a/modules/module-nim.el b/modules/module-nim.el deleted file mode 100644 index 8c340791d..000000000 --- a/modules/module-nim.el +++ /dev/null @@ -1,14 +0,0 @@ -;;; module-nim.el - -(use-package nim-mode - :mode "\\.nim$" - :init - (add-hook! nim-mode 'flycheck-mode) - :config - (require 'flycheck-nim) - (require 'company-nim) - (define-company-backend! nim-mode (nim yasnippet)) - (map! :map nim-mode-map "gd" 'nim-goto-sym)) - -(provide 'module-nim) -;;; module-nim.el ends here