From 421005e1258c444cf0299979867dfc38658a7a53 Mon Sep 17 00:00:00 2001
From: Ivan Malison Table of Contents
-
-
-
org-agenda-files
shell-command-on-region
org-agenda-files
shell-command-on-region
-
vc
vc
-
-
-
-
-
-
-
-
-
-
-
ansi-term
Colorsload-theme
hookansi-term
Colorsload-theme
hook
This is my emacs configuration in literate form. It aspires to be @@ -726,19 +728,19 @@ proud, and that others may find to be useful.
These sections are the ones that have the most potential to be interesting to others:
I wrote a githook and an installer script that automatically update index.html @@ -749,16 +751,16 @@ should be relatively easy to change.
I use fniessen's ReadTheOrg theme which can be found at https://github.com/fniessen/org-html-themes.
To make it so that internal heading links have names that correspond to the
@@ -767,7 +769,7 @@ wrote a custom version of org-export-get-reference
.
-See how this link (which is just a normal internal link in the original +See how this link (which is just a normal internal link in the original document) takes you to http://ivanmalison.github.io/dotfiles/#usemyowndefaultnamingschemefororgheadings.
@@ -782,76 +784,76 @@ that is something you are interested in.…has a bunch of generally useful functions:
The configurations in this section need to occur early in emacs startup for some reason or another.
This makes it so that the file that is produced from tangling this @@ -864,8 +866,8 @@ file uses lexical scoping.
(defvar imalison:secure t) @@ -905,8 +907,8 @@ file uses lexical scoping.
The org archive does not support https, so we set http as the protocol explicitly. @@ -937,8 +939,8 @@ The org archive does not support https, so we set http as the protocol explicitl
Its a shame that everyone has to have some version of this function in @@ -983,8 +985,8 @@ Ensure by default since most of the package for which I use use-package need to
(use-package auto-compile @@ -998,8 +1000,8 @@ Ensure by default since most of the package for which I use use-package need to
To reduce the risk of loading outdated byte code files, we set @@ -1012,8 +1014,8 @@ possible.
The default value of custom-file
is just the current user's .emacs.d/init.el
@@ -1039,11 +1041,11 @@ in the dotfiles repo but they are shared across machines elsewhere.
(when (file-exists-p "~/.emacs.d/load.d/emit.el") @@ -1053,8 +1055,8 @@ in the dotfiles repo but they are shared across machines elsewhere.
This appears here so that it can accurately benchmark as much of @@ -1069,8 +1071,8 @@ startup as possible.
Death to any gui elements in emacs! Do this EARLY so that emacs @@ -1092,8 +1094,8 @@ Tooltips are annoying:
These definitions silence the byte-compiler. @@ -1122,8 +1124,8 @@ These definitions silence the byte-compiler.
Sets environment variables by starting a shell. @@ -1148,8 +1150,8 @@ Sets environment variables by starting a shell.
(use-package noflet @@ -1158,8 +1160,8 @@ Sets environment variables by starting a shell.
Emacs' built in shell-command-to-string
function has the downside that it
@@ -1231,8 +1233,8 @@ This solution only applies it to projectile-find-file
Emacs cask seems to depend on the EMACS environment variable being set to the @@ -1253,11 +1255,11 @@ to cause issues. Oh well…
Works in the same way as os.path.join in python @@ -1272,8 +1274,8 @@ Works in the same way as os.path.join in python
(defvar imalison:projects-directory @@ -1284,8 +1286,8 @@ Works in the same way as os.path.join in python
(put 'imalison:use-package 'lisp-indent-function 'defun) @@ -1312,16 +1314,16 @@ Works in the same way as os.path.join in python
The packages in this section provide no functionality on their own, but provide support for writing custom elisp.
(use-package s :demand t) @@ -1329,8 +1331,8 @@ but provide support for writing custom elisp.
(use-package dash @@ -1341,8 +1343,8 @@ but provide support for writing custom elisp.
(imalison:use-package* gh "gh.el" @@ -1351,8 +1353,8 @@ but provide support for writing custom elisp.
(use-package shut-up @@ -1363,8 +1365,8 @@ but provide support for writing custom elisp.
(use-package pcache @@ -1373,8 +1375,8 @@ but provide support for writing custom elisp.
(use-package parse-csv @@ -1383,8 +1385,8 @@ but provide support for writing custom elisp.
This is disabled for now until I figure out what to do with emit. @@ -1398,8 +1400,8 @@ This is disabled for now until I figure out what to do with emit.
(use-package request) @@ -1408,11 +1410,11 @@ This is disabled for now until I figure out what to do with emit.
(defmacro imalison:emacs-version-predicate-fn (major-version minor-version) @@ -1471,14 +1473,14 @@ new macro name and the -fn suffix.
(defun imalison:make-list (thing) @@ -1548,8 +1550,8 @@ new macro name and the -fn suffix.
(defmacro imalison:compose-unary (&rest funcs) @@ -1567,8 +1569,8 @@ new macro name and the -fn suffix.
Taken from here.
@@ -1588,8 +1590,8 @@ Taken from
-
For composing functions with an apply so that they can be used with
@@ -1618,8 +1620,8 @@ the
For composing functions with an apply so that they can be used with the
This was taken from here but it has diverged significantly from the original.
@@ -1807,8 +1809,8 @@ This was taken from
-
This macro is useful when writing emacs-lisp. It creates a new interactive command that shows you the result of evaluating a function, with optionally provided arguments.
@@ -1836,8 +1838,8 @@ This interactive functions allows the user the select a function to invoke using
A macro for composing functions together to build an interactive command to copy a string to the kill ring.
@@ -1880,8 +1882,8 @@ A macro for composing functions together to build an interactive command to copy
- Note that you'll need to make sure that emacs properly inherits
-the path variable for this work. Check out my exec-path-from-shell config for
+ Note that you'll need to make sure that emacs properly inherits
+the path variable for this work. Check out my exec-path-from-shell config for
details.
This was stolen from https://github.com/jwiegley/dot-emacs
@@ -2085,8 +2087,8 @@ This was stolen from https://git
The stuff in this section is pretty crusty. I don't think its used anywhere, but
@@ -2198,14 +2200,14 @@ I keep it around just in case I need it.
This keyboard macro extracts the current sexp to an emacs-lisp source block of its own
@@ -2217,8 +2219,8 @@ This keyboard macro extracts the current sexp to an emacs-lisp source block of i
Get rid of nags about requiring setences to end with two spaces.
@@ -2470,8 +2472,8 @@ Set the default fill-column
Trailing whitespace is really messy and annoying, which makes this a must-have
@@ -2483,8 +2485,8 @@ with random whitespace ALL over the place.
Unfortunately, this setting can get annoying in a lot of modes, which is why I
@@ -2498,8 +2500,8 @@ use this hook to disable it in those modes
UTF-8 everywhere
@@ -2526,8 +2528,8 @@ Disable CJK coding/encoding (Chinese/Japanese/Korean characters)
This is set to true to disable the annoying audible bell that plays
@@ -2539,8 +2541,8 @@ whenever there is an error.
This makes
proced is an top like utility that runs inside of emacs. The following sets auto updating automatically and makes the update interval faster.
@@ -2615,8 +2617,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
This interferes with too many other packages. See
@@ -2974,11 +2976,11 @@ This interferes with too many other packages. See
This ensures that C-x C-c will always kill emacs, even if we are running in server mode.
@@ -3104,8 +3106,8 @@ This ensures that C-x C-c will always kill emacs, even if we are running in serv
imenu is the best. This should be a default binding.
@@ -3116,8 +3118,8 @@ imenu is the best. This should be a default binding.
I can't shake the habit of using this keybinding for undo. I should really use the default of C-/.
@@ -3128,8 +3130,8 @@ I can't shake the habit of using this keybinding for undo. I should really use t
Go the other way when you use capital O.
@@ -3140,8 +3142,8 @@ Go the other way when you use capital O.
This might be useless, but I believe that it is a macro that converts between
@@ -3186,8 +3188,8 @@ bind-key and global-set-key forms.
I use helm for almost all emacs completion
@@ -3270,8 +3272,8 @@ I use helm for almost all emacs completion
I don't use auto-complete at all, so I have set up a hook to automatically disable it whenever it is enabled to avoid creating conflicting popups when company is activated.
@@ -3543,11 +3545,11 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
This is disabled because it was causing too many issues with my
@@ -3903,8 +3905,8 @@ modeline and with excessive http requests to github.
Pyimport is disabled because it may be causing a performance problem.
@@ -4005,8 +4007,8 @@ Pyimport is disabled because it may be causing a performance problem.
The accepted way to use jedi if you prefer company to auto-complete is
@@ -4029,8 +4031,8 @@ reference to the jedi-core package.
Macrostep is an indespensible tool for writing emacs lisp macros. It lets you see pretty printed versions of the result of macro evaluation as the macro is evaluated
@@ -4230,8 +4232,8 @@ Macrostep is an indespensible tool for writing emacs lisp macros. It lets you se
Reduce indentation for some functions
@@ -4255,8 +4257,8 @@ Reduce indentation for some functions
Taken from http://endlessparentheses.com/eval-result-overlays-in-emacs-lisp.html
@@ -4349,8 +4351,8 @@ Taken from
-
We noflet elisp–preceding-sexp to munge defvars into sexps only for
@@ -4370,8 +4372,8 @@ eval-last-sexp.
The following is taken from spacemacs. It adds fancification to a clojure mode.
@@ -4464,8 +4466,8 @@ The following is taken from
-
Intero seems to be causing hangs, so it has been disabled
@@ -4674,8 +4676,8 @@ Intero seems to be causing hangs, so it has been disabled
This was taken from here.
First we define a function that will generate a sanitized version of the heading
as its link target.
@@ -5332,9 +5353,9 @@ This function replaces the default naming scheme with a call to
5.9 Make Interactive
+5.9 Make Interactive
(defmacro imalison:make-interactive-fn (function)
@@ -1602,8 +1604,8 @@ Taken from
-
5.10 Advice Add Around Builder
+5.10 Advice Add Around Builder
:around
keyword of advice-add.
5.10.1 Kill New
+5.10.1 Kill New
(imalison:advice-add-around-builder imalison:kill-new-around kill-new)
@@ -1628,8 +1630,8 @@ the
:around
keyword of advice-add.
5.11 Let Around
+5.11 Let Around
(defmacro imalison:let-around-fn (orig-func &rest forms)
@@ -1648,8 +1650,8 @@ the
:around
keyword of advice-add.
5.12 Let Around Advice
+5.12 Let Around Advice
(defmacro imalison:let-advise-around-fn (&rest forms)
@@ -1662,8 +1664,8 @@ the
:around
keyword of advice-add.
5.13 Compose Around Builder
+5.13 Compose Around Builder
:around
keyword of advice-add.
@@ -1681,8 +1683,8 @@ For composing functions with an apply so that they can be used with the :a
5.14 Measure Time
+5.14 Measure Time
(defmacro imalison:measure-time (&rest body)
@@ -1696,8 +1698,8 @@ For composing functions with an apply so that they can be used with the
:a
5.15 Add Files to
+org-agenda-files
5.15 Add Files to
org-agenda-files
(defun imalison:add-to-org-agenda-files (incoming-files)
@@ -1710,8 +1712,8 @@ For composing functions with an apply so that they can be used with the
:a
5.16 Get String From File
+5.16 Get String From File
(defun imalison:get-string-from-file (file-path)
@@ -1723,8 +1725,8 @@ For composing functions with an apply so that they can be used with the
:a
5.17 Get Current Location
+5.17 Get Current Location
(defun imalison:get-lat-long ()
@@ -1736,8 +1738,8 @@ For composing functions with an apply so that they can be used with the
:a
5.18 Haversine distance
+5.18 Haversine distance
(defun imalison:sin2 (p)
@@ -1764,8 +1766,8 @@ For composing functions with an apply so that they can be used with the
:a
5.19 Font Size
+5.19 Font Size
5.20 Message Result Builder
+5.20 Message Result Builder
5.21 Custom
+shell-command-on-region
5.21 Custom
shell-command-on-region
(defun imalison:copy-shell-command-on-region (start end command)
@@ -1865,8 +1867,8 @@ This interactive functions allows the user the select a function to invoke using
5.22 Copy String Functions
+5.22 Copy String Functions
5.22.1 Copy portions of the buffer file name
+5.22.1 Copy portions of the buffer file name
(defmacro imalison:copy-buffer-file-path-builder (&rest args)
@@ -1898,8 +1900,8 @@ A macro for composing functions together to build an interactive command to copy
5.22.2 Copy the current branch using magit
+5.22.2 Copy the current branch using magit
(imalison:compose-copy-builder imalison:copy-current-git-branch
@@ -1909,8 +1911,8 @@ A macro for composing functions together to build an interactive command to copy
5.23 Named Compile
+5.23 Named Compile
(defun imalison:named-compile (command)
@@ -1926,8 +1928,8 @@ A macro for composing functions together to build an interactive command to copy
5.24 Replace Escape Sequences
+5.24 Replace Escape Sequences
(defun imalison:replace-escape-sequences ()
@@ -1944,11 +1946,11 @@ A macro for composing functions together to build an interactive command to copy
5.25 Download a File Into a Buffer
+5.25 Download a File Into a Buffer
5.26 Concat With Symbols
+5.26 Concat With Symbols
(defun imalison:maybe-symbol-name (arg)
@@ -1980,12 +1982,12 @@ A macro for composing functions together to build an interactive command to copy
5.27 Edit a script on PATH
+5.27 Edit a script on PATH
5.28 Toggle lexical binding in the current buffer
+5.28 Toggle lexical binding in the current buffer
(defun imalison:toggle-lexical-binding ()
@@ -2021,8 +2023,8 @@ details.
5.29 Sync kill ring with copyq
+5.29 Sync kill ring with copyq
(defun imalison:copyq-get (i)
@@ -2043,8 +2045,8 @@ details.
5.30 helm-zsh-history
+5.30 helm-zsh-history
5.30.1 Use projectile as default directory
+5.30.1 Use projectile as default directory
(imalison:let-around imalison:projectile-helm-command-from-zsh helm-command-from-zsh
@@ -2096,8 +2098,8 @@ This was stolen from https://git
5.31 Other
+5.31 Other
5.32 Keyboard Macros
+5.32 Keyboard Macros
5.32.1 For editing literate config
+5.32.1 For editing literate config
5.32.1.1 extract-current-sexp-to-src-block
+5.32.1.1 extract-current-sexp-to-src-block
5.32.1.2 name-source-block-for-use-package-name
+5.32.1.2 name-source-block-for-use-package-name
(fset 'name-source-block-for-use-package-name
@@ -2227,8 +2229,8 @@ This keyboard macro extracts the current sexp to an emacs-lisp source block of i
5.32.1.3 extract-and-name-use-package-block
+5.32.1.3 extract-and-name-use-package-block
(fset 'extract-and-name-use-package-block
@@ -2240,11 +2242,11 @@ This keyboard macro extracts the current sexp to an emacs-lisp source block of i
6 General
+6 General
6.1 User Info
+6.1 User Info
(setq user-full-name
@@ -2257,8 +2259,8 @@ This keyboard macro extracts the current sexp to an emacs-lisp source block of i
6.2 Sane Defaults
+6.2 Sane Defaults
1: (global-auto-revert-mode)
@@ -2276,8 +2278,8 @@ This keyboard macro extracts the current sexp to an emacs-lisp source block of i
6.3 Line Numbers
+6.3 Line Numbers
(line-number-mode t)
@@ -2296,11 +2298,11 @@ programming mode.
6.4 Backups
+6.4 Backups
6.4.1 Put them all in one directory
+6.4.1 Put them all in one directory
(defconst emacs-tmp-dir
@@ -2312,8 +2314,8 @@ programming mode.
6.4.2 Completely disable backups
+6.4.2 Completely disable backups
(setq backup-inhibited t)
@@ -2324,11 +2326,11 @@ programming mode.
6.5 Prompts
+6.5 Prompts
6.5.1 No popup frames
+6.5.1 No popup frames
(setq ns-pop-up-frames nil)
@@ -2337,8 +2339,8 @@ programming mode.
6.5.2 boolean (yes-or-no)
+6.5.2 boolean (yes-or-no)
1: (defadvice yes-or-no-p (around prevent-dialog activate)
@@ -2356,8 +2358,8 @@ programming mode.
6.5.3 No dialog boxes
+6.5.3 No dialog boxes
(setq use-dialog-box nil)
@@ -2366,8 +2368,8 @@ programming mode.
6.6 Splitting
+6.6 Splitting
(defun split-horizontally-for-temp-buffers () (split-window-horizontally))
@@ -2378,11 +2380,11 @@ programming mode.
6.7 Buffer Display
+6.7 Buffer Display
6.7.1 ewmctrl
+6.7.1 ewmctrl
(use-package ewmctrl
@@ -2391,8 +2393,8 @@ programming mode.
6.7.2 display-buffer-alist
+6.7.2 display-buffer-alist
(defvar imalison:use-frames-only nil)
@@ -2443,16 +2445,16 @@ programming mode.
(bind-key "C-x 3" 'imalison:split-window-right)
(setq display-buffer-alist
- '(("COMMIT_EDITMSG" (display-buffer-in-side-window))
+ '(("COMMIT_EDITMSG" (display-buffer-other-frame) (reusable-frames . t))
(".*" (imalison:display-buffer)
- (reusable-frames . t))))
+ (reusable-frames . t))))
6.8 Fill Setup
+6.8 Fill Setup
6.9 Show Trailing Whitespace
+6.9 Show Trailing Whitespace
6.9.1 Disable
+6.9.1 Disable
6.10 Encoding
+6.10 Encoding
6.11 Visible Bell
+6.11 Visible Bell
6.12 Configure
+vc
6.12 Configure
vc
(setq vc-follow-symlinks t)
@@ -2548,8 +2550,8 @@ whenever there is an error.
6.13 Time in Mode Line
+6.13 Time in Mode Line
(setq display-time-default-load-average nil)
@@ -2560,8 +2562,8 @@ whenever there is an error.
6.14 Kill Ring
+6.14 Kill Ring
(setq kill-ring-max 1000)
@@ -2569,8 +2571,8 @@ whenever there is an error.
6.15 Subword
+6.15 Subword
forward-word
and backward-word
understand snake and camel case.
@@ -2582,8 +2584,8 @@ This makes forward-word
and backward-word
understand s
6.16 Scratch Buffer
+6.16 Scratch Buffer
(setq initial-scratch-message "")
@@ -2591,8 +2593,8 @@ This makes
forward-word
and backward-word
understand s
6.17 Don't prompt about local variables
+6.17 Don't prompt about local variables
(defun risky-local-variable-p (&rest args)
@@ -2601,8 +2603,8 @@ This makes
forward-word
and backward-word
understand s
6.18 proced
+6.18 proced
6.19 Set default browser
+6.19 Set default browser
(when (equal system-type 'gnu/linux)
@@ -2626,8 +2628,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.20 Set epa program
+6.20 Set epa program
(setq epg-gpg-program "gpg")
@@ -2635,8 +2637,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.21 Make files executable
+6.21 Make files executable
(add-hook 'after-save-hook 'executable-make-buffer-file-executable-if-script-p)
@@ -2644,8 +2646,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.22 Misc
+6.22 Misc
(defvar iedit-toggle-key-default nil)
@@ -2723,8 +2725,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.23 paradox
+6.23 paradox
(use-package paradox
@@ -2739,8 +2741,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.24 diminish
+6.24 diminish
(use-package diminish
@@ -2757,8 +2759,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.25 edit-server
+6.25 edit-server
(use-package edit-server
@@ -2772,8 +2774,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.26 load-dir
+6.26 load-dir
(use-package load-dir
@@ -2787,8 +2789,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.27 server
+6.27 server
(use-package server
@@ -2799,8 +2801,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.28 list-environment
+6.28 list-environment
(use-package list-environment)
@@ -2808,8 +2810,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.29 bug-hunter
+6.29 bug-hunter
(use-package bug-hunter)
@@ -2817,8 +2819,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.30 shackle
+6.30 shackle
(use-package shackle
@@ -2835,8 +2837,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.31 beacon
+6.31 beacon
(use-package beacon
@@ -2847,8 +2849,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.32 iregister
+6.32 iregister
(use-package iregister)
@@ -2856,8 +2858,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.33 discover-my-major
+6.33 discover-my-major
(use-package discover-my-major)
@@ -2865,8 +2867,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.34 refine
+6.34 refine
(use-package refine
@@ -2875,8 +2877,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.35 winner
+6.35 winner
(use-package winner
@@ -2896,8 +2898,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.36 eyebrowse
+6.36 eyebrowse
(use-package eyebrowse
@@ -2908,8 +2910,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.37 stream
+6.37 stream
(use-package stream)
@@ -2917,8 +2919,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.38 tile
+6.38 tile
(imalison:use-package tile
@@ -2950,8 +2952,8 @@ proced is an top like utility that runs inside of emacs. The following sets auto
6.39 fill-column-indicator
+6.39 fill-column-indicator
7 Keybindings
+7 Keybindings
7.1 god-mode
+7.1 god-mode
(use-package god-mode
@@ -2990,8 +2992,8 @@ This interferes with too many other packages. See
7.2 bind-key
+7.2 bind-key
(use-package bind-key)
@@ -2999,8 +3001,8 @@ This interferes with too many other packages. See
7.3 which-key
+7.3 which-key
(use-package which-key
@@ -3013,8 +3015,8 @@ This interferes with too many other packages. See
7.4 hydra
+7.4 hydra
(use-package hydra
@@ -3027,11 +3029,11 @@ This interferes with too many other packages. See
7.4.1 Font Settings
+7.4.1 Font Settings
7.4.2 Yanking
+7.4.2 Yanking
(defhydra imalison:hydra-yank
@@ -3066,8 +3068,8 @@ This interferes with too many other packages. See
7.4.3 Compile
+7.4.3 Compile
(defun imalison:make-test ()
@@ -3092,8 +3094,8 @@ This interferes with too many other packages. See
7.5 kill-emacs
+7.5 kill-emacs
7.6 imenu
+7.6 imenu
7.7 undo
+7.7 undo
7.8 other-window
+7.8 other-window
7.9 Mark ring
+7.9 Mark ring
(bind-key "C-c SPC" 'imalison:mark-ring)
@@ -3149,8 +3151,8 @@ Go the other way when you use capital O.
7.10 Other bindings
+7.10 Other bindings
(bind-key "C-x p" 'pop-to-mark-command)
@@ -3169,8 +3171,8 @@ Go the other way when you use capital O.
7.11 global-set-key-to-use-package
+7.11 global-set-key-to-use-package
7.12 OSX
+7.12 OSX
(when (equal system-type 'darwin)
@@ -3198,11 +3200,11 @@ bind-key and global-set-key forms.
8 Navigation
+8 Navigation
8.1 zop-to-char
+8.1 zop-to-char
(use-package zop-to-char
@@ -3215,8 +3217,8 @@ bind-key and global-set-key forms.
8.2 helm
+8.2 helm
8.3 helm-projectile
+8.3 helm-projectile
(use-package helm-projectile
@@ -3315,8 +3317,8 @@ I use helm for almost all emacs completion
8.4 projectile
+8.4 projectile
(use-package projectile
@@ -3368,8 +3370,8 @@ I use helm for almost all emacs completion
8.5 ido
+8.5 ido
(use-package ido
@@ -3407,8 +3409,8 @@ I use helm for almost all emacs completion
8.6 avy
+8.6 avy
(use-package avy
@@ -3424,8 +3426,8 @@ I use helm for almost all emacs completion
8.7 ace-window
+8.7 ace-window
(use-package ace-window
@@ -3439,8 +3441,8 @@ I use helm for almost all emacs completion
8.8 neotree
+8.8 neotree
(use-package neotree)
@@ -3448,8 +3450,8 @@ I use helm for almost all emacs completion
8.9 jump-char
+8.9 jump-char
(use-package jump-char
@@ -3458,8 +3460,8 @@ I use helm for almost all emacs completion
8.10 flimenu
+8.10 flimenu
(imalison:use-package flimenu
@@ -3470,8 +3472,8 @@ I use helm for almost all emacs completion
8.11 swiper
+8.11 swiper
(use-package swiper
@@ -3482,11 +3484,11 @@ I use helm for almost all emacs completion
9 Completion
+9 Completion
9.1 company
+9.1 company
(use-package company
@@ -3506,8 +3508,8 @@ I use helm for almost all emacs completion
9.1.1 company-flx
+9.1.1 company-flx
(use-package company-flx
@@ -3520,8 +3522,8 @@ I use helm for almost all emacs completion
9.2 auto-complete
+9.2 auto-complete
10 Text Manipulation
+10 Text Manipulation
10.1 smartparens
+10.1 smartparens
(use-package smartparens
@@ -3571,8 +3573,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.2 multiple-cursors
+10.2 multiple-cursors
(use-package multiple-cursors
@@ -3598,8 +3600,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.3 expand-region
+10.3 expand-region
(use-package expand-region
@@ -3610,8 +3612,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.4 multi-line
+10.4 multi-line
(imalison:use-package multi-line
@@ -3620,8 +3622,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.5 comment-dwim-2
+10.5 comment-dwim-2
(use-package comment-dwim-2
@@ -3630,8 +3632,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.6 unfill
+10.6 unfill
(use-package unfill
@@ -3640,8 +3642,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.7 cliphist
+10.7 cliphist
(use-package cliphist
@@ -3650,8 +3652,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.8 electric-operator-mode
+10.8 electric-operator-mode
(use-package electric-operator
@@ -3661,8 +3663,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.9 string-inflection
+10.9 string-inflection
(use-package string-inflection
@@ -3673,8 +3675,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
10.10 yasnippet
+10.10 yasnippet
(use-package yasnippet
@@ -3693,11 +3695,11 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11 Source Control
+11 Source Control
11.1 magit
+11.1 magit
(use-package magit
@@ -3741,8 +3743,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.1.1 magithub
+11.1.1 magithub
(use-package magithub
@@ -3753,8 +3755,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.2 git-link
+11.2 git-link
(use-package git-link
@@ -3765,8 +3767,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.3 magit-gitflow
+11.3 magit-gitflow
(use-package magit-gitflow
@@ -3782,8 +3784,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.4 git-timemachine
+11.4 git-timemachine
(use-package git-timemachine
@@ -3792,8 +3794,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.5 git-gutter
+11.5 git-gutter
(use-package git-gutter
@@ -3804,8 +3806,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.6 gitolite-clone
+11.6 gitolite-clone
(use-package gitolite-clone
@@ -3819,8 +3821,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.7 gitconfig-mode
+11.7 gitconfig-mode
(use-package gitconfig-mode
@@ -3829,8 +3831,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.8 gitignore-mode
+11.8 gitignore-mode
(use-package gitignore-mode
@@ -3839,11 +3841,11 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.9 github
+11.9 github
11.9.1 github-search
+11.9.1 github-search
(imalison:use-package github-search
@@ -3871,8 +3873,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.9.2 github-clone
+11.9.2 github-clone
(imalison:use-package* github-clone "~/Projects/github-clone.el"
@@ -3885,8 +3887,8 @@ I don't use auto-complete at all, so I have set up a hook to automatically disab
11.9.3 github-notifier
+11.9.3 github-notifier
11.9.4 github-browse-file
+11.9.4 github-browse-file
(use-package github-browse-file
@@ -3913,8 +3915,8 @@ modeline and with excessive http requests to github.
11.9.5 magit-gh-pulls
+11.9.5 magit-gh-pulls
(use-package magit-gh-pulls
@@ -3928,8 +3930,8 @@ modeline and with excessive http requests to github.
11.9.6 gist
+11.9.6 gist
(use-package gist
@@ -3943,18 +3945,18 @@ modeline and with excessive http requests to github.
12 Major Modes
+12 Major Modes
12.1 Programming
+12.1 Programming
-12.1.1 python
+12.1.1 python
(use-package python
@@ -3989,8 +3991,8 @@ modeline and with excessive http requests to github.
12.1.1.1 pyimport
+12.1.1.1 pyimport
12.1.1.2 jedi
+12.1.1.2 jedi
12.1.2 go
+12.1.2 go
(use-package go-mode
@@ -4153,8 +4155,8 @@ reference to the jedi-core package.
12.1.2.1 Show diffs of testify output
+12.1.2.1 Show diffs of testify output
(defvar imalison:testify-ediff-buffers nil)
@@ -4195,11 +4197,11 @@ reference to the jedi-core package.
12.1.3 emacs-lisp
+12.1.3 emacs-lisp
12.1.3.1 elisp-slime-nav
+12.1.3.1 elisp-slime-nav
(use-package elisp-slime-nav
@@ -4216,8 +4218,8 @@ reference to the jedi-core package.
12.1.3.2 macrostep
+12.1.3.2 macrostep
12.1.3.3 emr
+12.1.3.3 emr
(use-package emr
@@ -4243,8 +4245,8 @@ Macrostep is an indespensible tool for writing emacs lisp macros. It lets you se
12.1.3.4 Editing configuration
+12.1.3.4 Editing configuration
12.1.3.5 Checkdoc
+12.1.3.5 Checkdoc
(setq checkdoc-force-docstrings-flag nil
@@ -4265,8 +4267,8 @@ Reduce indentation for some functions
12.1.3.6 edebug
+12.1.3.6 edebug
(use-package edebug
@@ -4276,8 +4278,8 @@ Reduce indentation for some functions
12.1.3.7 overseer
+12.1.3.7 overseer
(use-package overseer)
@@ -4285,8 +4287,8 @@ Reduce indentation for some functions
12.1.3.8 Misc
+12.1.3.8 Misc
(defun imenu-elisp-sections ()
@@ -4313,8 +4315,8 @@ Reduce indentation for some functions
12.1.3.9 Show result of eval-last-sexp inline
+12.1.3.9 Show result of eval-last-sexp inline
12.1.3.10 Reevalute defvars when running eval-last-sexp
+12.1.3.10 Reevalute defvars when running eval-last-sexp
12.1.3.11 Init hook
+12.1.3.11 Init hook
(defvar imalison:check-parens nil)
@@ -4389,8 +4391,8 @@ eval-last-sexp.
12.1.3.12 Keybinds
+12.1.3.12 Keybinds
(emit-compose imalison:copy-eval-last-sexp
@@ -4410,8 +4412,8 @@ eval-last-sexp.
12.1.4 clojure
+12.1.4 clojure
12.1.4.1 cider
+12.1.4.1 cider
(use-package cider
@@ -4483,8 +4485,8 @@ The following is taken from
-
12.1.4.2 clj-refactor
+12.1.4.2 clj-refactor
(use-package clj-refactor
@@ -4494,8 +4496,8 @@ The following is taken from
-
12.1.5 scala
+12.1.5 scala
(use-package scala-mode
@@ -4517,8 +4519,8 @@ The following is taken from
-
12.1.6 js
+12.1.6 js
(defun tape-onlyify ()
@@ -4595,8 +4597,8 @@ The following is taken from
-
12.1.7 rust
+12.1.7 rust
(use-package rust-mode
@@ -4628,8 +4630,8 @@ The following is taken from
-
12.1.8 haskell
+12.1.8 haskell
(use-package haskell-mode
@@ -4658,8 +4660,8 @@ The following is taken from
-
12.1.8.1 intero
+12.1.8.1 intero
12.1.8.2 hindent
+12.1.8.2 hindent
(use-package hindent
@@ -4688,8 +4690,8 @@ Intero seems to be causing hangs, so it has been disabled
12.1.8.3 ghc-mod
+12.1.8.3 ghc-mod
(use-package ghc
@@ -4702,8 +4704,8 @@ Intero seems to be causing hangs, so it has been disabled
12.1.8.4 company-ghc
+12.1.8.4 company-ghc
(use-package company-ghc
@@ -4715,8 +4717,8 @@ Intero seems to be causing hangs, so it has been disabled
12.1.9 C/C++
+12.1.9 C/C++
(use-package cc-mode
@@ -4742,8 +4744,8 @@ Intero seems to be causing hangs, so it has been disabled
12.1.10 C#
+12.1.10 C#
(use-package csharp-mode
@@ -4752,8 +4754,8 @@ Intero seems to be causing hangs, so it has been disabled
12.1.11 racket
+12.1.11 racket
(use-package racket-mode
@@ -4763,11 +4765,11 @@ Intero seems to be causing hangs, so it has been disabled
12.2 Data/Config/Protocol
+12.2 Data/Config/Protocol
12.2.1 thrift
+12.2.1 thrift
(use-package thrift
@@ -4777,8 +4779,8 @@ Intero seems to be causing hangs, so it has been disabled
12.2.2 protobuf
+12.2.2 protobuf
(use-package protobuf-mode)
@@ -4786,8 +4788,8 @@ Intero seems to be causing hangs, so it has been disabled
12.2.3 json-mode
+12.2.3 json-mode
(use-package json-mode
@@ -4801,8 +4803,8 @@ Intero seems to be causing hangs, so it has been disabled
12.2.4 yaml-mode
+12.2.4 yaml-mode
(use-package yaml-mode
@@ -4812,8 +4814,8 @@ Intero seems to be causing hangs, so it has been disabled
12.2.5 es-mode
+12.2.5 es-mode
(use-package es-mode)
@@ -4822,12 +4824,15 @@ Intero seems to be causing hangs, so it has been disabled
12.3 Document
+12.3 Document
12.3.1 org
+12.3.1 org
12.3.1.1 config
+(use-package org
:ensure org-plus-contrib
@@ -5240,9 +5245,25 @@ Intero seems to be causing hangs, so it has been disabled
12.3.1.1 Set Background Color of Source Blocks for Export
-12.3.1.2 Use frames
+(use-package org
+ :config
+ (progn
+ (setq org-src-window-setup 'current-window)
+ (when (imalison:use-frames-only)
+ (progn
+ (setcdr (assoc 'file org-link-frame-setup) 'find-file-other-frame)))))
+
+12.3.1.3 Set Background Color of Source Blocks for Export
+12.3.1.2 Use my own default naming scheme for org-headings
-12.3.1.4 Use my own default naming scheme for org-headings
+12.3.1.3 org-projectile
-12.3.1.5 org-projectile
+(imalison:use-package org-projectile
:after helm
@@ -5363,9 +5384,9 @@ This function replaces the default naming scheme with a call to
12.3.1.4 org-notify
-12.3.1.6 org-notify
+(use-package org-notify
:disabled t
@@ -5424,9 +5445,9 @@ This function replaces the default naming scheme with a call to
12.3.1.5 org-reveal
-12.3.1.7 org-reveal
+(use-package ox-reveal
:after org
@@ -5437,9 +5458,9 @@ This function replaces the default naming scheme with a call to
12.3.1.6 org-caldav
-12.3.1.8 org-caldav
+(use-package org-caldav
:defer t
@@ -5454,8 +5475,8 @@ This function replaces the default naming scheme with a call to
12.3.2 TeX
+12.3.2 TeX
(