summary refs log tree commit diff stats
path: root/tinyc/i386-gen.c
Commit message (Expand)AuthorAgeFilesLines
* tiny C support; cosmetic improvements for the docsAraq2010-08-281-0/+1034
'n1' href='#n1'>1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

























































                                                                             
;;; init-clojure.el --- Clojure Configuration File -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:

;(require 'init-lisp)

(use-package yasnippet
  :diminish yas-minor-mode)

(use-package flycheck-clj-kondo)

(use-package clojure-mode
  :config
  (require 'flycheck-clj-kondo)
  (subword-mode +1))

(use-package hydra)
(use-package clj-refactor
  :diminish
  :after yasnippet
  :bind ("C-c '" . hydra-cljr-help-menu/body)
  :config
  (cljr-add-keybindings-with-prefix "C-c C-m")
  (setq cljr-suppress-no-project-warning t)
  :hook
  (clojure-mode .
    (lambda ()
      (clj-refactor-mode 1)
      (yas-minor-mode 1))))

(use-package cider
  :diminish
  :after key-chord
  :config
  (setq cider-repl-pop-to-buffer-on-connect 'display-only
        cider-repl-display-help-banner nil
        cider-repl-history-highlight-current-entry t
        cider-repl-history-highlight-inserted-item t
        cider-repl-use-clojure-font-lock t
        cider-repl-use-pretty-printing t
        cider-save-file-on-load t
        ;; cider-invert-insert-eval-p t
        ;; cider-switch-to-repl-on-insert nil
        cider-repl-history-file "~/.emacs.d/cider-history"
        nrepl-log-messages t
        clojure-toplevel-inside-comment-form t)
  (key-chord-define-global "??" 'cider-xref-fn-refs-select)
  (key-chord-define-global "qq" 'cider-xref-fn-refs)
  (unbind-key "C-c C-l" cider-mode-map)
  :bind (:map cider-mode-map ("C-c M-l" . cider-load-file))
  :hook
  (cider-repl-mode . (lambda ()
                       (display-line-numbers-mode -1)
                       (subword-mode +1)))
  (cider-mode . eldoc-mode))

(provide 'init-clojure)
;;; init-clojure.el ends here