]> git.donarmstrong.com Git - lib.git/blobdiff - emacs_el/configuration/don-configuration.org
add missing ) to configuration
[lib.git] / emacs_el / configuration / don-configuration.org
index 9feb84b0cfe744f80938a529c6266ba0bbea8e11..c3abecfe2424c8315bbbd34cf5ee81d90726725c 100644 (file)
@@ -244,12 +244,36 @@ value, scrolling continues until there is no more output.
 ** Jumping
 *** Avy
 #+BEGIN_SRC emacs-lisp
-(use-package avy
-  :ensure t
-  :bind ("C-c C-SPC" . avy-goto-word-1)
-  :config (progn
-            (setq avy-background t)
-            (key-chord-define-global "jj"  #'avy-goto-word-1)))
+  (use-package avy
+    :ensure t
+    :bind (("C-c C-<SPC>" . avy-goto-word-or-subword-1)
+           ("C-c j j" . avy-goto-word-or-subword-1)
+           ("M-g g" . avy-goto-line))
+    :config (progn (setq avy-background t))
+    )
+#+END_SRC
+*** Ace-link (jumping to links)
+#+BEGIN_SRC emacs-lisp
+  (use-package ace-link
+    :ensure t
+    ; bind o in most modes
+    :config (ace-link-setup-default))
+#+END_SRC
+*** Jumping through edit points (goto-chg)
+#+BEGIN_SRC emacs-lisp
+  (use-package goto-chg
+    :ensure t
+    :bind (("C-c j ," . goto-last-change)
+           ("C-c j ." . goto-last-change-reverse))
+    )
+#+END_SRC
+*** Jumping to bookmarks (visible bookmarks, bm)
+#+BEGIN_SRC emacs-lisp
+  (use-package bm
+    :ensure t
+    :bind (("C-c j b ." . bm-next)
+           ("C-c j b ," . bm-previous)
+           ("C-c j b SPC" . bm-toggle)))
 #+END_SRC
 
 ** Snippets
@@ -279,30 +303,6 @@ value, scrolling continues until there is no more output.
            )
     )
 #+END_SRC
-** Helm Flx
-
-[[https://github.com/PythonNut/helm-flx][helm-flx]] implements intelligent helm fuzzy sorting, provided by [[https://github.com/lewang/flx][flx]].
-
-#+BEGIN_SRC emacs-lisp
-(use-package helm-flx
-  :ensure t
-  :config (progn
-            ;; these are helm configs, but they kind of fit here nicely
-            (setq helm-M-x-fuzzy-match                  t
-                  helm-bookmark-show-location           t
-                  helm-buffers-fuzzy-matching           t
-                  helm-completion-in-region-fuzzy-match t
-                  helm-file-cache-fuzzy-match           t
-                  helm-imenu-fuzzy-match                t
-                  helm-mode-fuzzy-match                 t
-                  helm-locate-fuzzy-match               nil
-                  helm-quick-update                     t
-                  helm-recentf-fuzzy-match              nil
-                  helm-semantic-fuzzy-match             t)
-            (helm-flx-mode +1)))
-#+END_SRC
-
-
 ** Tinyprocmail
 
 #+BEGIN_SRC emacs-lisp
@@ -345,27 +345,30 @@ value, scrolling continues until there is no more output.
 
 ** Perl
 #+BEGIN_SRC emacs-lisp
-  (require 'cperl-mode)
-  ;; Use c-mode for perl .xs files
-  (add-to-list 'auto-mode-alist '("\\.xs\\'" . c-mode))
-  (add-to-list 'auto-mode-alist '("\\.\\([pP][Llm]\\|al\\)\\'" . cperl-mode))
-  (add-to-list 'interpreter-mode-alist '("perl" . cperl-mode))
-  (add-to-list 'interpreter-mode-alist '("perl5" . cperl-mode))
-  (add-to-list 'interpreter-mode-alist '("miniperl" . cperl-mode))
-  (setq cperl-hairy t
-        cperl-indent-level 4
-        cperl-auto-newline nil
-        cperl-auto-newline-after-colon nil
-        cperl-continued-statement-offset 4
-        cperl-brace-offset -1
-        cperl-continued-brace-offset 0
-        cperl-label-offset -4
-        cperl-highlight-variables-indiscriminately t
-        cperl-electric-lbrace-space nil
-        cperl-indent-parens-as-block nil
-        cperl-close-paren-offset -1
-        cperl-tab-always-indent t)
-  ;(add-hook 'cperl-mode-hook (lambda () (cperl-set-style "PerlStyle")))
+  (use-package cperl-mode
+    :config
+    (progn
+      ;; Use c-mode for perl .xs files
+      (add-to-list 'auto-mode-alist '("\\.xs\\'" . c-mode))
+      (add-to-list 'auto-mode-alist '("\\.\\([pP][Llm]\\|al\\)\\'" . cperl-mode))
+      (add-to-list 'interpreter-mode-alist '("perl" . cperl-mode))
+      (add-to-list 'interpreter-mode-alist '("perl5" . cperl-mode))
+      (add-to-list 'interpreter-mode-alist '("miniperl" . cperl-mode))
+      (setq cperl-hairy t
+            cperl-indent-level 4
+            cperl-auto-newline nil
+            cperl-auto-newline-after-colon nil
+            cperl-continued-statement-offset 4
+            cperl-brace-offset -1
+            cperl-continued-brace-offset 0
+            cperl-label-offset -4
+            cperl-highlight-variables-indiscriminately t
+            cperl-electric-lbrace-space nil
+            cperl-indent-parens-as-block nil
+            cperl-close-paren-offset -1
+            cperl-tab-always-indent t)
+      ;;(add-hook 'cperl-mode-hook (lambda () (cperl-set-style "PerlStyle")))
+  ))
 #+END_SRC
 
 ** Helm
@@ -385,6 +388,119 @@ value, scrolling continues until there is no more output.
     (add-hook 'kill-emacs-hook #'(lambda () (and (file-exists-p "$TMP") (delete-file "$TMP"))))
   )
 #+END_SRC
+*** Helm Flx
+
+ [[https://github.com/PythonNut/helm-flx][helm-flx]] implements intelligent helm fuzzy sorting, provided by [[https://github.com/lewang/flx][flx]].
+
+ #+BEGIN_SRC emacs-lisp
+ (use-package helm-flx
+   :ensure t
+   :config (progn
+             ;; these are helm configs, but they kind of fit here nicely
+             (setq helm-M-x-fuzzy-match                  t
+                   helm-bookmark-show-location           t
+                   helm-buffers-fuzzy-matching           t
+                   helm-completion-in-region-fuzzy-match t
+                   helm-file-cache-fuzzy-match           t
+                   helm-imenu-fuzzy-match                t
+                   helm-mode-fuzzy-match                 t
+                   helm-locate-fuzzy-match               nil
+                   helm-quick-update                     t
+                   helm-recentf-fuzzy-match              nil
+                   helm-semantic-fuzzy-match             t)
+             (helm-flx-mode +1)))
+ #+END_SRC
+*** Helm Swoop
+#+BEGIN_SRC emacs-lisp
+
+  ;;; stolen from https://github.com/malb/emacs.d/blob/master/malb.org
+  (defun malb/helm-swoop-pr2e-fill ()
+    (thing-at-point 'symbol))
+  (setq malb/helm-swoop-ignore-major-mode '(dired-mode
+        paradox-menu-mode doc-view-mode pdf-view-mode
+        mu4e-headers-mode org-mode markdown-mode latex-mode
+        ein:notebook-multilang-mode))
+
+  (defun malb/swoop-or-search ()
+    (interactive)
+    (if (or (> (buffer-size) 1048576) ;; helm-swoop can be slow on big buffers
+            (memq major-mode malb/helm-swoop-ignore-major-mode))
+        (isearch-forward)
+      (helm-swoop)))
+
+  (use-package helm-swoop
+    :ensure t
+    :bind (("C-c o" . helm-multi-swoop-org)
+           ("C-s" . malb/swoop-or-search)
+           ("C-M-s" . helm-multi-swoop-all))
+    :config (progn
+            
+              (setq helm-swoop-pre-input-function  #'malb/helm-swoop-pre-fill
+                    helm-swoop-split-with-multiple-windows nil
+                    helm-swoop-split-direction #'split-window-horizontally
+                    helm-swoop-split-window-function 'helm-default-display-buffer
+                    helm-swoop-speed-or-color t)
+
+              ;; https://emacs.stackexchange.com/questions/28790/helm-swoop-how-to-make-it-behave-more-like-isearch
+              (defun malb/helm-swoop-C-s ()
+                (interactive)
+                (if (boundp 'helm-swoop-pattern)
+                    (if (equal helm-swoop-pattern "")
+                        (previous-history-element 1)
+                      (helm-next-line))
+                  (helm-next-line)))
+
+              (bind-key "C-S-s" #'helm-swoop-from-isearch isearch-mode-map)
+              (bind-key "C-S-s" #'helm-multi-swoop-all-from-helm-swoop helm-swoop-map)
+              (bind-key "C-r"   #'helm-previous-line helm-swoop-map)
+              (bind-key "C-s"   #'malb/helm-swoop-C-s helm-swoop-map)
+              (bind-key "C-r"   #'helm-previous-line helm-multi-swoop-map)
+              (bind-key "C-s"   #'malb/helm-swoop-C-s helm-multi-swoop-map))
+    )
+  
+#+END_SRC
+*** Helm Ag
+#+BEGIN_SRC emacs-lisp
+(use-package helm-ag
+  :ensure t
+  :config (setq helm-ag-base-command "ag --nocolor --nogroup"
+                helm-ag-command-option "--all-text"
+                helm-ag-insert-at-point 'symbol
+                helm-ag-fuzzy-match t
+                helm-ag-use-temp-buffer t
+                helm-ag-use-grep-ignore-list t
+                helm-ag-use-agignore t))
+#+END_SRC
+*** Helm Descbinds
+#+BEGIN_SRC emacs-lisp
+  (use-package helm-descbinds
+    :ensure t
+    :bind ("C-h b" . helm-descbinds)
+    :init (fset 'describe-bindings 'helm-descbinds))
+#+END_SRC
+
+*** Helm YaSnippet
+#+BEGIN_SRC emacs-lisp
+  (use-package helm-c-yasnippet
+    :ensure t
+    :bind ("C-c h y" .  helm-yas-complete)
+    :config (progn
+              (setq helm-yas-space-match-any-greedy t)))
+#+END_SRC
+*** Helm Org Rifle
+#+BEGIN_SRC emacs-lisp
+  (use-package helm-org-rifle
+    :ensure t
+    :config (progn
+              (defun malb/helm-org-rifle-agenda-files (arg)
+                (interactive "p")
+                (let ((current-prefix-arg nil))
+                  (cond
+                   ((equal arg 4) (call-interactively #'helm-org-rifle-agenda-files nil))
+                   ((equal arg 16) (helm-org-rifle-occur-agenda-files))
+                   (t (helm-org-agenda-files-headings)))))))
+#+END_SRC
+
 ** Hydra
 #+BEGIN_SRC emacs-lisp :tangle don-configuration.el
 (require 'don-hydra)
@@ -596,13 +712,29 @@ From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colori
 ** Writeroom Mode
 #+BEGIN_SRC emacs-lisp
   (use-package writeroom-mode
-    :config (add-hook 'writeroom-mode-hook 'auto-fill-mode)
+    :config
+    (defun my/writing-mode ()
+      "Start my writing mode; enable visual-line-mode and auto-fill-mode"
+      (interactive)
+      (if writeroom-mode
+          (progn
+            (writeroom-mode -1)
+            (visual-line-mode -1)
+            (auto-fill-mode -1)
+            (visual-fill-column-mode -1)
+            )
+        (visual-line-mode 1)
+        (auto-fill-mode 1)
+        (visual-fill-column-mode 1)
+        (writeroom-mode 1))
+      )
     )
 #+END_SRC
 ** GhostText/Atomic Chrome
 #+BEGIN_SRC emacs-lisp
   (use-package atomic-chrome
     :config (atomic-chrome-start-server)
+    (setq atomic-chrome-buffer-open-style 'full)
     )
 #+END_SRC
 ** Multiple Cursors
@@ -1543,8 +1675,8 @@ From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colori
 
   (defvar my-keys-minor-mode-map (make-keymap) "my-keys-minor-mode keymap.")
 
-  ; use iedit everywhere
-  (define-key my-keys-minor-mode-map (kbd "C-;") 'iedit-mode)
+  ; use mc everywhere
+  (define-key my-keys-minor-mode-map (kbd "C-;") 'mc/mark-all-dwim)
   ;; use outline mode keybindings everywhere
   ;; (define-key my-keys-minor-mode-map (kbd "C-;") 'my/mydra-outline/body)
 
@@ -1565,7 +1697,11 @@ From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colori
           (add-to-list 'minor-mode-map-alist mykeys))))
   (ad-activate 'load)
 #+END_SRC
-
+** Goto line
+#+BEGIN_SRC emacs-lisp
+  (global-unset-key "\M-g")
+  (global-set-key (kbd "M-g l") 'goto-line)
+#+END_SRC
 * Misc (uncharacterized)
 #+BEGIN_SRC emacs-lisp
   (setq bibtex-user-optional-fields (quote (("annote" "Personal annotation (ignored)") ("abstract" "") ("pmid" "") ("doi" ""))))
@@ -1696,9 +1832,6 @@ From http://julien.danjou.info/projects/emacs-packages#rainbow-mode, this colori
 
   (setq mail-yank-prefix "> ")
 
-  (global-unset-key "\M-g")
-  (global-set-key "\M-g" 'goto-line)
-
   ;; self-insert-command hack.
   ;;   Without this, "if<SP>" expands to
   ;;   if ( -!-) {