Add clojure support.

This commit is contained in:
2015-08-21 13:24:19 -07:00
parent 618307c89a
commit 638838283e
4 changed files with 24 additions and 0 deletions

View File

@@ -15,6 +15,9 @@ mkdir -p .config
mv .config/fish .config/fish.bak mv .config/fish .config/fish.bak
ln -s $HOME/.dotfiles/fish .config/fish ln -s $HOME/.dotfiles/fish .config/fish
mv .lein .lein.bak
ln -s $HOME/.dotfiles/lein .lein
popd &> /dev/null popd &> /dev/null
echo "...done." echo "...done."

2
lein/profiles.clj Normal file
View File

@@ -0,0 +1,2 @@
{:user {:plugins [[cider/cider-nrepl "0.9.1"]
[refactor-nrepl "1.1.0"]]}}

0
lein/repl-history Normal file
View File

View File

@@ -13,6 +13,7 @@
;; ---------------------------------------------------------------- ;; ----------------------------------------------------------------
;; auto-completion ;; auto-completion
;; better-defaults ;; better-defaults
clojure
(colors :variables (colors :variables
colors-enable-rainbow-identifiers t) colors-enable-rainbow-identifiers t)
emacs-lisp emacs-lisp
@@ -181,3 +182,21 @@ layers configuration."
;; Do not write anything past this comment. This is where Emacs will ;; Do not write anything past this comment. This is where Emacs will
;; auto-generate custom variable definitions. ;; auto-generate custom variable definitions.
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ahs-case-fold-search nil)
'(ahs-default-range (quote ahs-range-whole-buffer))
'(ahs-idle-interval 0.25)
'(ahs-idle-timer 0 t)
'(ahs-inhibit-face-list nil)
'(ring-bell-function (quote ignore) t)
'(vc-follow-symlinks t))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)