Browse Source

Add string join for Emacs 26+, make sure org underlines links

master
macoymadson@gmail.com 4 years ago
parent
commit
6a48fd9035
  1. 8
      Emacs/emacsConfig.txt

8
Emacs/emacsConfig.txt

@ -503,6 +503,7 @@
)
)
;; TODO: Make n and p keys for macoy-codesearch-mode if this ever becomes a package
;; Refer to ag.el for customization
(define-compilation-mode macoy-codesearch-mode "Codesearch"
"Codesearch results compilation mode"
@ -985,6 +986,9 @@
)
)
(defun string-join (sl delim)
(mapconcat 'identity sl delim))
(defun macoy-multiple-cursors-copy()
"Copy at multiple cursors using macoy-multiple-cursors-buffers"
(interactive)
@ -1445,6 +1449,10 @@ static char *gnus-pointer[] = {
(set-face-foreground 'svn-mark-face (face-foreground 'region))
(set-face-background 'svn-mark-face (face-background 'region))
;; I'm not sure why I had to do this, but make 100% sure links are underlined
(require 'org-faces)
(set-face-underline 'org-link t)
;; Hide these modes completely (for a more minimal look)
;; Diminish things down here so that we're sure we catch all modes
(require 'diminish)

Loading…
Cancel
Save