Skip to content

Commit

Permalink
resolve merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingmachine committed Nov 21, 2018
2 parents f89d0ff + 65a60b4 commit d3e9c46
Show file tree
Hide file tree
Showing 386 changed files with 78,568 additions and 30,926 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ projectile-bookmarks.eld
projectile.cache
auto-save-list
backups
melpa-stable
melpa-stable
archive-contents
3 changes: 0 additions & 3 deletions customizations/editing.el
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@
(comment-or-uncomment-region (line-beginning-position) (line-end-position)))
(global-set-key (kbd "C-;") 'toggle-comment-on-line)

;; yay rainbows!
(global-rainbow-delimiters-mode t)

;; use 2 spaces for tabs
(defun die-tabs ()
(interactive)
Expand Down
3 changes: 2 additions & 1 deletion customizations/navigation.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@

;; This enables ido in all contexts where it could be useful, not just
;; for selecting buffer and file names
(ido-ubiquitous-mode 1)
(ido-ubiquitous-mode t)
(ido-everywhere t)

;; Shows a list of buffers
(global-set-key (kbd "C-x C-b") 'ibuffer)
Expand Down
5 changes: 3 additions & 2 deletions customizations/setup-clojure.el
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@
("(\\(background?\\)"
(1 font-lock-keyword-face))))
(define-clojure-indent (fact 1))
(define-clojure-indent (facts 1))))
(define-clojure-indent (facts 1))
(rainbow-delimiters-mode)))

;;;;
;; Cider
;;;;

;; provides minibuffer documentation for the code you're typing into the repl
(add-hook 'cider-mode-hook 'cider-turn-on-eldoc-mode)
(add-hook 'cider-mode-hook 'eldoc-mode)

;; go right to the REPL buffer when it's finished connecting
(setq cider-repl-pop-to-buffer-on-connect t)
Expand Down
Loading

0 comments on commit d3e9c46

Please sign in to comment.