about summary refs log blame commit diff
path: root/configs/shared/.emacs.d/wpc/packages/wpc-lisp.el
blob: a8df7ddd5f41bb9300f3d71a29c38c1cb980a196 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                   



                                                                   































































































                                                                               
;;; lisp.el --- Generic LISP preferences -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>

;; parent (up)
;; child (down)
;; prev-sibling (left)
;; next-sibling (right)

;;; Code:

(defconst wpc/lisp-mode-hooks
  '(lisp-mode-hook
    emacs-lisp-mode-hook
    clojure-mode-hook
    clojurescript-mode-hook
    racket-mode-hook)
  "List of LISP modes.")

(use-package rainbow-delimiters
  :config
  (general-add-hook wpc/lisp-mode-hooks #'rainbow-delimiters-mode))

(use-package racket-mode
  :config
  (general-define-key
   :keymaps 'racket-mode-map
   :states 'normal
   :prefix "<SPC>"
   "x" #'racket-send-definition)
  (general-define-key
   :keymaps 'racket-mode-map
   :states 'normal
   :prefix "<SPC>"
   "X" #'racket-run)
  (general-define-key
   :keymaps 'racket-mode-map
   :states 'normal
   :prefix "<SPC>"
   "d" #'racket-describe)
  (setq racket-program "~/.nix-profile/bin/racket"))

(use-package lispyville
  :init
  (defconst lispyville-key-themes
    '(c-w
      operators
      text-objects
      ;; Disabling this because I don't enjoy the way it moves around comments.
      ;; atom-motions
      prettify
      commentary
      slurp/barf-cp
      wrap
      additional
      additional-insert
      additional-wrap
      escape)
    "All available key-themes in Lispyville.")
  :config
  (general-add-hook wpc/lisp-mode-hooks #'lispyville-mode)
  (lispyville-set-key-theme lispyville-key-themes)
  (progn
    ;;
    (general-define-key
     :keymaps 'lispyville-mode-map
     :states 'motion
     ;; first unbind
     "M-h" nil
     "M-l" nil)
    (general-define-key
     :keymaps 'lispyville-mode-map
     :states 'normal
     ;; first unbind
     "M-j" nil
     "M-k" nil
     ;; second rebind
     ;; TODO: Rebind to something that doesn't conflict with window resizing.
     ;; "C-M-h" #'lispyville-drag-backward
     ;; "C-M-l" #'lispyville-drag-forward
     )))

;; deletes all bindings of f->kbd
;; binds kbd->
;; (kbd/bind-function->key
;;  :keymap 'lispyville-mode-map
;;  :states 'motion
;;  #'lispyville-drag-backward "H")

;; Elisp
(use-package elisp-slime-nav
  :config
  (general-add-hook 'emacs-lisp-mode #'ielm-mode))

;; TODO: Should I be using `general-define-key' or `evil-leader/set-key'?  My
;; gut say `general-define-key'.
(general-define-key
 :keymaps 'emacs-lisp-mode-map
 :states 'normal
 :prefix "<SPC>"
 "x" #'eval-defun)

(general-define-key
 :keymaps 'emacs-lisp-mode-map
 :states 'normal
 :prefix "<SPC>"
 "X" #'eval-buffer)

(general-define-key
 :keymaps 'emacs-lisp-mode-map
 :states 'normal
 :prefix "<SPC>"
 "d" (lambda ()
       (interactive)
       (with-current-buffer (current-buffer)
         (helpful-function (symbol-at-point)))))

(provide 'wpc-lisp)
;;; wpc-lisp.el ends here