6266c5d32f
Rename my //users directory and all places that refer to glittershark to grfn, including nix references and documentation. This may require some extra attention inside of gerrit's database after it lands to allow me to actually push things. Change-Id: I4728b7ec2c60024392c1c1fa6e0d4a59b3e266fa Reviewed-on: https://cl.tvl.fyi/c/depot/+/2933 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: glittershark <grfn@gws.fyi>
52 lines
1.3 KiB
EmacsLisp
52 lines
1.3 KiB
EmacsLisp
;;; -*- lexical-binding: t; -*-
|
|
|
|
(defun clojure-thing-at-point-setup ()
|
|
(interactive)
|
|
;; Used by cider-find-dwim to parse the symbol at point
|
|
(setq-local
|
|
thing-at-point-file-name-chars
|
|
(concat thing-at-point-file-name-chars
|
|
"><!?")))
|
|
|
|
(defun +grfn/clojure-setup ()
|
|
;; (flycheck-select-checker 'clj-kondo)
|
|
(push 'clojure-cider-kibit flycheck-disabled-checkers)
|
|
(push 'clojure-cider-eastwood flycheck-disabled-checkers)
|
|
(push 'clojure-cider-typed flycheck-disabled-checkers)
|
|
)
|
|
|
|
(after! clojure-mode
|
|
(define-clojure-indent
|
|
(PUT 2)
|
|
(POST 2)
|
|
(GET 2)
|
|
(PATCH 2)
|
|
(DELETE 2)
|
|
(context 2)
|
|
(checking 3)
|
|
(match 1)
|
|
(domonad 0)
|
|
(describe 1)
|
|
(before 1)
|
|
(it 2))
|
|
|
|
(add-hook 'clojure-mode-hook #'clojure-thing-at-point-setup)
|
|
(add-hook 'clojure-mode-hook #'+grfn/clojure-setup))
|
|
|
|
(use-package! flycheck-clojure
|
|
;; :disabled t
|
|
:after (flycheck cider)
|
|
:config
|
|
(flycheck-clojure-setup))
|
|
|
|
(after! clj-refactor
|
|
(setq cljr-magic-requires :prompt
|
|
cljr-clojure-test-declaration "[clojure.test :refer :all]"
|
|
cljr-cljc-clojure-test-declaration"#?(:clj [clojure.test :refer :all]
|
|
:cljs [cljs.test :refer-macros [deftest is testing]])"
|
|
)
|
|
(add-to-list
|
|
'cljr-magic-require-namespaces
|
|
'("s" . "clojure.spec.alpha")))
|
|
|
|
(set-popup-rule! "^\\*cider-test-report" :size 0.4)
|