spacemacs/layers/+lang/hy/packages.el

76 lines
2.4 KiB
EmacsLisp

;;; packages.el --- Hy Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq hy-packages
'(
company
hy-mode
ob-hy
pyenv-mode
pyvenv
smartparens
))
(defun hy/post-init-company ()
;; Autocompletion now fit for use, not all symbols complete, hy bug
(spacemacs|add-company-backends
:backends company-hy
:modes hy-mode inferior-hy-mode))
(defun hy/init-hy-mode ()
(use-package hy-mode
:defer t
:init
(progn
;; need to do this as they are not auloaded by the package
(add-to-list 'auto-mode-alist '("\\.hy\\'" . hy-mode))
(add-to-list 'interpreter-mode-alist '("hy" . hy-mode))
;; Disable this unless using special branch
(setq hy-shell-use-control-codes? nil)
;; key bindings
(spacemacs/declare-prefix-for-mode 'hy-mode "me" "eval")
(spacemacs/declare-prefix-for-mode 'hy-mode "md" "debug")
(spacemacs/declare-prefix-for-mode 'hy-mode "mt" "test")
(spacemacs/declare-prefix-for-mode 'hy-mode "ms" "REPL")
(spacemacs/declare-prefix-for-mode 'hy-mode "mv" "pyvenv")
(spacemacs/set-leader-keys-for-major-mode 'hy-mode
"dd" 'hy-insert-pdb
"dt" 'hy-insert-pdb-threaded
"hh" 'hy-describe-thing-at-point
"sb" 'hy-shell-eval-buffer
"sB" 'spacemacs/hy-shell-eval-buffer-and-go
"sc" 'hy-shell-eval-current-form
"sC" 'spacemacs/hy-shell-eval-current-form-and-go
"si" 'hy-shell-start-or-switch-to-shell
"sr" 'hy-shell-eval-region
"sR" 'spacemacs/hy-shell-eval-region-and-go
"ss" 'hy-shell-start-or-switch-to-shell
"tA" 'spacemacs/python-test-pdb-all
"ta" 'spacemacs/python-test-all
"tM" 'spacemacs/python-test-pdb-module
"tm" 'spacemacs/python-test-module))))
(defun hy/pre-init-ob-hy ()
(spacemacs|use-package-add-hook org
:post-config
(use-package ob-hy
:init (add-to-list 'org-babel-load-languages '(hy . t)))))
(defun hy/init-ob-hy ())
(defun hy/pre-init-pyenv-mode ()
(add-to-list 'spacemacs--python-pyenv-modes 'hy-mode))
(defun hy/pre-init-pyvenv ()
(add-to-list 'spacemacs--python-pyvenv-modes 'hy-mode))
(defun hy/post-init-smartparens ()
(add-hook 'hy-mode-hook 'smartparens-mode))