summaryrefslogtreecommitdiff
path: root/lisp
AgeCommit message (Collapse)Author
2014-02-12Add find-file-other-window to projectile commanderKyle Meyer
2014-02-11Add keymap for window-related bindingsKyle Meyer
2014-02-11Use correct terminology in switch-frame-splitKyle Meyer
2014-02-11Add mail sync keybindingKyle Meyer
2014-02-11Move multiple cursors keymap outside of insert mapKyle Meyer
2014-02-11Add mc/edit-{beginnings,ends}-of-lines bindingsKyle Meyer
2014-02-11Put compile and recompile under external keymapKyle Meyer
2014-02-11Group keybindings in init-externalKyle Meyer
2014-02-10Restore window configuration after shell commandKyle Meyer
2014-02-10Swap python test and compile keybindingsKyle Meyer
I keep using the wrong one, so I must think it makes more sense this way.
2014-02-10Make `create-python-test-file` find file if existsKyle Meyer
Instead of raising an error if the file exist, just open file in other buffer.
2014-02-10Add `find-function' keybindingKyle Meyer
Learned about this function from http://article.gmane.org/gmane.emacs.orgmode/82237.
2014-02-10Move back to Firefox as default browserKyle Meyer
2014-02-08Add some Bog keybindings to OrgKyle Meyer
2014-02-07Enable set-goal-columnKyle Meyer
2014-02-07Widen first in LaTeX narrowing functionsKyle Meyer
This is consistent with behavior in `narrow-to-page' and `narrow-to-defun'.
2014-02-07Autoload vc-git-grepKyle Meyer
2014-02-07Use dired-omit-mode instead of dired-omit-files-pKyle Meyer
`dired-omit-files-p' is obsolete. Also, I should have been using `setq-default' to set `dired-omit-files-p' since it is buffer local, but this was changed to `setq' when I was reorganizing.
2014-02-07Load git-annex during initKyle Meyer
2014-02-05Advice BibTeX cleaning instead of using hookKyle Meyer
For some reason not obvious to me, adding `km/bibtex-use-title-case' to `bibtex-clean-entry-hook' results in `bibtex-key-in-head' returning nil instead of the citekey. Using advice fixes this.
2014-02-05Add function to convert BibTeX title to title caseKyle Meyer
2014-02-05Remove words from bibtex-autokey-titleword-ignoreKyle Meyer
These are uncommon first words, so having in them in a citekey should be informative enough.
2014-02-03Add compile keybindingKyle Meyer
2014-02-03Combine recompile advice and activationKyle Meyer
2014-02-03Set PDF command guess for diredKyle Meyer
2014-02-02Autoload org-contacts-template-nameKyle Meyer
2014-02-01Add note to Org NA stateKyle Meyer
2014-02-01Move some settings from general to editingKyle Meyer
2014-02-01Use prefix argument to choose py.test{,2} compileKyle Meyer
2014-01-31Enable narrow to pageKyle Meyer
2014-01-31Remove M-z unsetKyle Meyer
Originally 'M-z' was unset because I moved `zap-to-char' to 'C-z', but 'M-z' is now bound to autoloaded `zap-up-to-char'.
2014-01-30Widen after cloning an indirect bufferKyle Meyer
2014-01-29Change default reftex bibliographyKyle Meyer
Make it relative to working directory (no longer using one large BibTeX file for everything).
2014-01-29Fix LaTeX narrow function docKyle Meyer
2014-01-29Add LaTeX narrowing functionsKyle Meyer
2014-01-28Align and sort fields when clean bib entryKyle Meyer
2014-01-28Add ignored extensions for ido completionKyle Meyer
2014-01-28Set preferred extension order for ido completionKyle Meyer
2014-01-28Shuffle around init-idoKyle Meyer
2014-01-26Control mail snip number with prefix argumentKyle Meyer
2014-01-26Use ido for completing read in magitKyle Meyer
2014-01-26Add function to delete current buffer's fileKyle Meyer
Taken from https://github.com/purcell/emacs.d/blob/master/lisp/init-utils.el.
2014-01-26Remove unneeded loads in init-texKyle Meyer
2014-01-26Remove unneeded url-handlers importKyle Meyer
2014-01-26Reorganize and use require-packageKyle Meyer
`require-package' is from https://github.com/purcell/emacs.d/blob/master/lisp/init-elpa.el.
2014-01-26Follow Purcell's emacs.d structureKyle Meyer
User init files are added using provide/require. https://github.com/purcell/emacs.d