summaryrefslogtreecommitdiff
path: root/lisp
AgeCommit message (Collapse)Author
2014-03-09Hide gnus summary subthreads by defaultKyle Meyer
2014-03-09Reset to default sorting for gnus threadsKyle Meyer
2014-03-09Don't prompt on gnus exitKyle Meyer
2014-03-09Fix indentation of an if-elseKyle Meyer
2014-03-09Disable vc for gitKyle Meyer
2014-03-09Stop gnus agent from asking to go onlineKyle Meyer
2014-03-09Add functions to bury and unbury gnusKyle Meyer
2014-03-09Use diminish to shorten mode lineKyle Meyer
2014-03-07Generalize km/follow-gwene-linkKyle Meyer
Don't use anything gwene-specific to follow the last link of the message, so I can use this on other messages that have the main link at the bottom.
2014-03-06Disable suspend-frame keybindingKyle Meyer
I never use and sometimes hit it on accident when use C-x z.
2014-03-04Add bog-goto-citekey-heading-in-* bindingsKyle Meyer
2014-03-02Fix function call in text mode hookKyle Meyer
2014-03-02Enable abbrev-mode in text modesKyle Meyer
2014-02-28Always switch to buffer in new windowKyle Meyer
The default file and buffer switching methods for ido will raise a frame if the buffer is already present somewhere else. With `selected-window', the buffer is always shown in the current window, which behaves better with multiple screens.
2014-02-28Bind `other-window' to M-oKyle Meyer
Suggested here: http://www.masteringemacs.org/articles/2014/02/28/my-emacs-keybindings/
2014-02-28Add more shell-related functions to external mapKyle Meyer
2014-02-27Enable recursive minibuffersKyle Meyer
This is useful to inserting shell commands in the minibuffer with `C-u shell-command`.
2014-02-25Correct position of heading in init-org.elKyle Meyer
2014-02-23Don't hardcode sync-mail.sh pathKyle Meyer
2014-02-20Add binding to narrow Org tree in current windowKyle Meyer
Complements C-c C-x b, which (by default) opens the tree in an indirect buffer in a new window.
2014-02-18Flip prefix when making Org indirect bufferKyle Meyer
2014-02-18Make keychord for `projectile-multi-occur'Kyle Meyer
2014-02-17Give org-metadown a "C-c C-x" bindingKyle Meyer
2014-02-17Check for process before syncing mailKyle Meyer
2014-02-15Correct ido-everywhere initializationKyle Meyer
The function `ido-everywhere' should be called rather than setting the variable.
2014-02-15Set read functions for bogKyle Meyer
2014-02-15Move bog to separate init fileKyle Meyer
2014-02-15Add binding for bog-rename-staged-pdf-to-citekeyKyle Meyer
2014-02-12Change {forward,backward}-paragraph keybindingKyle Meyer
2014-02-12Add function to find PDF for TeX fileKyle Meyer
2014-02-12Remove unnecessary lambdas from yas hooksKyle Meyer
2014-02-12Fix `yas-reload-all' callKyle Meyer
This was not getting ran because "yasnippet", not "yas", should be passed to `eval-after-load'. But using `eval-after-load' here is pointless because `prog-mode-hook' will be called during initialization anwyway.
2014-02-12Require org-contacts instead of autoloadingKyle Meyer
Otherwise, completion is not available for in message mode.
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