summaryrefslogtreecommitdiff
path: root/lisp/init-general.el
AgeCommit message (Collapse)Author
2015-05-27Remove km/imenuKyle Meyer
This is no longer need since I am using helm-imenu in place of imenu because helm-imenu binds imenu-auto-rescan to t.
2015-04-30Swap top and middle in recenter-positionsKyle Meyer
2015-04-16Set default-input-methodKyle Meyer
2015-04-15Add another binding for eval-expressionKyle Meyer
2015-04-12Avoid saving abbrevs and bookmarks if not default serverKyle Meyer
2015-04-05Give in to Transient Mark modeKyle Meyer
I tend to use C-SPC for pushing a position to jump back to later much more than I use it to highlight a region, so I prefer to disable Transient Mark mode and use C-SPC C-SPC to temporarily activate it. However, it seems that lispy depends on this being on for its mark commands to be useful. So try to get used to C-SPC C-SPC to set a mark without activating. If I can't get used to that, I can try something similar to this: http://www.masteringemacs.org/article/fixing-mark-commands-transient-mark-mode
2015-03-24Use helm variant of imenuKyle Meyer
2015-03-03Don't load customization fileKyle Meyer
I don't use this. I'm not setting custom-file to nil because I don't want customization to be dropped in init.el.
2015-03-03Fix indentationKyle Meyer
2015-03-01Save bookmarks when modifiedKyle Meyer
2015-03-01Add find-function-other-window bindingKyle Meyer
2015-02-28Save abbrevs silentlyKyle Meyer
2015-02-28Move abbrev customization to separate fileKyle Meyer
2015-02-28Save abbrevs silentlyKyle Meyer
2015-02-28Add case-only abbrev functionsKyle Meyer
2015-02-20Rebind some 'j' bindingsKyle Meyer
2015-02-15Don't use global-unset-keyKyle Meyer
2015-02-13Enable set-mark-command-repeat-popKyle Meyer
2015-02-02Rebind find-functionKyle Meyer
2015-02-02Reposition mode callsKyle Meyer
2015-01-27Improve organization and consistency of filesKyle Meyer
- Add pages and more headings for large files. - Try to use consistent order for file (or page) structure. * Loading * Settings * Hooks * Any mode activation or function calls * My functions * Key bindings
2015-01-22Use whitespace-mode as cleanup indicatorKyle Meyer
- Activate global whitespace-mode. When not allowing the buffer to be cleaned up, use more annoying whitespace indicators. - Use whitespace-cleanup as cleanup function. Except for trailing whitespace, this should cover what km/cleanup-buffer was doing and more.
2015-01-07Fix some docstringsKyle Meyer
2015-01-02Go back to default spacing after sentencesKyle Meyer
Let's see if I can get used to this.
2014-12-21Only rescan if imenu is already loadedKyle Meyer
2014-12-07Move some settings to init-external.elKyle Meyer
2014-12-07Check indent-tabs-mode in cleanup-buffer functionKyle Meyer
2014-11-30Use Cask and Pallet to manage packagesKyle Meyer
2014-11-29Wrap imenu to add rescan as prefix argumentKyle Meyer
2014-11-06Bind n/p to {next,previous}-line in occur-mode-mapKyle Meyer
2014-10-29Add second binding for Info-menuKyle Meyer
2014-09-06Enable {upcase,dowcase}-regionKyle Meyer
2014-06-06Use milkypostman's `after' macroKyle Meyer
2014-05-12Bind imenu globallyKyle Meyer
2014-05-03Don't put autosave or backup files in /tmpKyle Meyer
2014-03-06Disable suspend-frame keybindingKyle Meyer
I never use and sometimes hit it on accident when use C-x z.
2014-02-27Enable recursive minibuffersKyle Meyer
This is useful to inserting shell commands in the minibuffer with `C-u shell-command`.
2014-02-12Change {forward,backward}-paragraph keybindingKyle Meyer
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-07Enable set-goal-columnKyle Meyer
2014-02-01Move some settings from general to editingKyle Meyer
2014-01-31Enable narrow to pageKyle 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