d0e30ed23a
I've wanted this for awhile... Change-Id: Ic010fee6a7adc0aa793e4ca2179b90f4463d1eec Reviewed-on: https://cl.tvl.fyi/c/depot/+/5197 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
123 lines
3 KiB
EmacsLisp
123 lines
3 KiB
EmacsLisp
;;; wpc-lisp.el --- Generic LISP preferences -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
;; Version: 0.0.1
|
|
;; Package-Requires: ((emacs "24"))
|
|
|
|
;;; Commentary:
|
|
;; parent (up)
|
|
;; child (down)
|
|
;; prev-sibling (left)
|
|
;; next-sibling (right)
|
|
|
|
;;; Code:
|
|
|
|
;; TODO: Consider having a separate module for each LISP dialect.
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Dependencies
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(require 'general)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Configuration
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(defconst wpc-lisp--hooks
|
|
'(lisp-mode-hook
|
|
emacs-lisp-mode-hook
|
|
clojure-mode-hook
|
|
clojurescript-mode-hook
|
|
racket-mode-hook)
|
|
"List of LISP modes.")
|
|
|
|
(use-package sly
|
|
:config
|
|
(setq inferior-lisp-program "sbcl")
|
|
(general-define-key
|
|
:keymaps 'sly-mode-map
|
|
:states '(normal)
|
|
:prefix "<SPC>"
|
|
"x" #'sly-eval-defun
|
|
"X" #'sly-eval-buffer
|
|
"d" #'sly-describe-symbol))
|
|
|
|
(use-package rainbow-delimiters
|
|
:config
|
|
(general-add-hook wpc-lisp--hooks #'rainbow-delimiters-mode))
|
|
|
|
(use-package racket-mode
|
|
:config
|
|
(general-define-key
|
|
:keymaps 'racket-mode-map
|
|
:states 'normal
|
|
:prefix "<SPC>"
|
|
"x" #'racket-send-definition
|
|
"X" #'racket-run
|
|
"d" #'racket-describe)
|
|
(setq racket-program "~/.nix-profile/bin/racket"))
|
|
|
|
(use-package lispyville
|
|
:init
|
|
(defconst wpc-lisp--lispyville-key-themes
|
|
'(c-w
|
|
operators
|
|
text-objects
|
|
prettify
|
|
commentary
|
|
slurp/barf-cp
|
|
wrap
|
|
additional
|
|
additional-insert
|
|
additional-wrap
|
|
escape)
|
|
"All available key-themes in Lispyville.")
|
|
:config
|
|
(general-add-hook wpc-lisp--hooks #'lispyville-mode)
|
|
(lispyville-set-key-theme wpc-lisp--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
|
|
"C-s-h" #'lispyville-drag-backward
|
|
"C-s-l" #'lispyville-drag-forward
|
|
"C-s-e" #'lispyville-end-of-defun
|
|
"C-s-a" #'lispyville-beginning-of-defun)))
|
|
|
|
;; Elisp
|
|
(use-package elisp-slime-nav
|
|
:config
|
|
(general-add-hook 'emacs-lisp-mode #'ielm-mode))
|
|
|
|
(defun wpc-lisp-copy-elisp-eval-output ()
|
|
"Copy the output of the elisp evaluation"
|
|
(interactive)
|
|
(call-interactively 'eval-last-sexp)
|
|
(clipboard-copy (current-message)
|
|
:message (format "%s - copied!" (current-message))))
|
|
|
|
(general-define-key
|
|
:keymaps 'emacs-lisp-mode-map
|
|
:prefix "<SPC>"
|
|
:states 'normal
|
|
"c" #'wpc-lisp-copy-elisp-eval-output
|
|
"x" #'eval-defun
|
|
"X" #'eval-buffer
|
|
"d" (lambda ()
|
|
(interactive)
|
|
(with-current-buffer (current-buffer)
|
|
(helpful-function (symbol-at-point)))))
|
|
|
|
(provide 'wpc-lisp)
|
|
;;; wpc-lisp.el ends here
|