From 638838283e8e1043fbe5969792c5840e4069c651 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Fri, 21 Aug 2015 13:24:19 -0700 Subject: [PATCH] Add clojure support. --- deploy.sh | 3 +++ lein/profiles.clj | 2 ++ lein/repl-history | 0 spacemacs | 19 +++++++++++++++++++ 4 files changed, 24 insertions(+) create mode 100644 lein/profiles.clj create mode 100644 lein/repl-history diff --git a/deploy.sh b/deploy.sh index 11f2dd9..e0748b0 100755 --- a/deploy.sh +++ b/deploy.sh @@ -15,6 +15,9 @@ mkdir -p .config mv .config/fish .config/fish.bak ln -s $HOME/.dotfiles/fish .config/fish +mv .lein .lein.bak +ln -s $HOME/.dotfiles/lein .lein + popd &> /dev/null echo "...done." diff --git a/lein/profiles.clj b/lein/profiles.clj new file mode 100644 index 0000000..3462b35 --- /dev/null +++ b/lein/profiles.clj @@ -0,0 +1,2 @@ +{:user {:plugins [[cider/cider-nrepl "0.9.1"] + [refactor-nrepl "1.1.0"]]}} diff --git a/lein/repl-history b/lein/repl-history new file mode 100644 index 0000000..e69de29 diff --git a/spacemacs b/spacemacs index 12fc359..e6e84d5 100644 --- a/spacemacs +++ b/spacemacs @@ -13,6 +13,7 @@ ;; ---------------------------------------------------------------- ;; auto-completion ;; better-defaults + clojure (colors :variables colors-enable-rainbow-identifiers t) emacs-lisp @@ -181,3 +182,21 @@ layers configuration." ;; Do not write anything past this comment. This is where Emacs will ;; 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. + )