subtree(users/wpcarro): docking briefcase at '24f5a642'
git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15cgit-subtree-split:24f5a642afChange-Id: I6105b3762b79126b3488359c95978cadb3efa789
This commit is contained in:
commit
019f8fd211
766 changed files with 175420 additions and 0 deletions
116
users/wpcarro/emacs/.emacs.d/wpc/wpc-lisp.el
Normal file
116
users/wpcarro/emacs/.emacs.d/wpc/wpc-lisp.el
Normal file
|
|
@ -0,0 +1,116 @@
|
|||
;;; wpc-lisp.el --- Generic LISP preferences -*- lexical-binding: t -*-
|
||||
|
||||
;; Author: William Carroll <wpcarro@gmail.com>
|
||||
;; Version: 0.0.1
|
||||
;; URL: https://git.wpcarro.dev/wpcarro/briefcase
|
||||
;; 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))
|
||||
|
||||
(general-define-key
|
||||
:keymaps 'emacs-lisp-mode-map
|
||||
:prefix "<SPC>"
|
||||
:states 'normal
|
||||
"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
|
||||
Loading…
Add table
Add a link
Reference in a new issue