about summary refs log tree commit diff
path: root/configs/shared/emacs/.emacs.d/wpc/packages
AgeCommit message (Collapse)AuthorFilesLines
2019-04-15 Don't log DONE time in org-modeWilliam Carroll1-1/+0
At the moment, I don't find these timestamps useful.
2019-04-09 Support align KBD for evil-leaderWilliam Carroll1-0/+1
<leader>= should align a selected region. This should have been added awhile ago, but it's great to have now!
2019-04-08 Drop support for extending Emacs's default word regexWilliam Carroll1-9/+0
This was causing problems with my Emacs initialization. I don't have time to troubleshoot, so I'm removing this for now.
2019-04-03 Update regexp used with evil-mode's * and # KBDsWilliam Carroll1-0/+9
I'd bet that there is a better way to achieve this, but I couldn't find it, and I need this experience to be better.
2019-03-23 Support shared, device-specific i3 configurationsWilliam Carroll2-2/+2
Separated i3/configuration since some of my devices support XFree86 keysyms while others do not. This introduced some cascading changes. - Removed ~/.config/i3/config from this repo. Since I will be switching between devices semi-regularly and that file will be generated each time I switch to a different device running an X session, I don't want the i3/config to spam my `gst` and `gd` when I haven't changed configuration in either config.shared or config.device. - Update aliases, variables, etc. to point to config.shared instead of the generated file. - Ensure that X sessions generate the i3/config file. - Ensure that i3 reload and restart command generate the i3/config file.
2019-03-21 Fixes Emacs's scroll-bar display issuesWilliam Carroll1-5/+1
Prefer (scroll-bar-mode -1) to (toggle-scroll-bar -1).
2019-03-21 Remove scroll bars from EmacsWilliam Carroll1-0/+3
I don't use these; they take up space; the colors clash with my dark theme.
2019-03-20 Return (server-start) to Emacs initializationWilliam Carroll1-0/+17
See the comment for an explanation about this revision. - we want to support to GUI - it's difficult to reuse GUI windows elegantly unless the server is started from the GUI itself - consider starting the emacs GUI when X initializes
2019-03-20 Disable company-mode when editing markdownWilliam Carroll1-0/+5
`company-mode' can be pretty noisy in some modes. In fact, I'm writing this in `fundamental-mode', which is proving to be equally as noisy as the auto-completion in `markdown-mode'. Stay tuned for an update that disables `company-mode' in fundamental mode.
2019-03-20 Remove org-mode's M-{h,j,k,l} conflicting KBDsWilliam Carroll1-6/+12
This is a bit of a workaround since ideally wpc/ensure-kbds and wpc/kbds minor mode should eclipse the major-mode's KBDs. I couldn't fully debug the issue, and in the interest of getting on with things, I resolved to just unbind those keys.
2019-03-20 Support global auto-fill-modeWilliam Carroll1-4/+1
It appears that (auto-fill-mode 1) may be buffer-local. Adding a hook to fundamental-mode to ensure auto-fill-mode is enabled for most buffers. Stay tuned, because this may need to be setup for prog-mode-hook as well. Or neither... we'll see what works.
2019-03-20 Rename Elisp function for ensuring KBDsWilliam Carroll1-5/+5
Prefer wpc/ namespace for functions that I define. Consider defining all functions in one location, similar to ZSH's functions.zsh
2019-03-18 Support an org-capture template for misc shoppingWilliam Carroll1-0/+5
Sometimes just capturing what I want to buy is as satisfying as actually buying the item. These org-capture templates really alleviate a lot of the anxiety I associate with trying to remember many things.
2019-03-18 Drop OSX support; support desktop, laptop, cloudtopWilliam Carroll4-12/+24
Dropping support for OSX. Moving forward these dotfiles will depend on Linux systems. Furthermore, since I'm support a ~/bin, the machines that consume these dotfiles depend on i386 architectures. Linux and i386 are two dependencies that I'm okay with since the leverage this assumption provides, makes their existence tolerable. There is some Google leakage herein, which includes aliases, functions, and mentions of cloudtop. For now, this is okay. I may break the Google specific code into its own repository, but for now, this is less maintenance. This also introduces a ~/.profile instead of erroneously defining environment variables in my zshrc file, which was unadvised. This is a large commit and also introduces new aliases, variables, functions that I accumulated over the past week or so while migrating away from OSX and onto my new setup. Hopefully in the future I'll be more precise with my commits.
2019-03-11 Fix Emacs installationWilliam Carroll1-1/+5
My Emacs installation would fail on new machines because: * use-package * evil * paredit use-package is needed to install everything else. evil and paredit were required in functions.el and other places before they were called like (use-package evil ...). This should improve things but not fix the entire issue.
2019-03-08 Support org shortcut and ELisp fnWilliam Carroll1-0/+5
Support generic ELisp fn. Should have a dumping grounds for ELisp fns similar to my dumping_grounds.zsh.
2019-03-08 Support i3wm and org-capture integrationWilliam Carroll1-11/+28
Now this has been missing from my workflow for awhile.
2019-03-07 Drop support for PythonWilliam Carroll1-14/+0
I couldn't pull lsp-python from Melpa properly and since I'm currently not doing any Python work, I figure I will drop support for it temporarily.
2019-03-07 Renew support for MelpaWilliam Carroll1-1/+3
This was removed when I was still trialing Nix. Since I need to be on gLinux for work and Nix isn't an option, I need something that works.
2019-03-06 Prefer x KBD for XResourcesWilliam Carroll1-3/+3
I'm finding that I'm visiting XResources more frequently than I'm visiting ~/.xinitrc or other X files.
2019-03-06 Support commonly visited configs in EmacsWilliam Carroll1-0/+10
<leader>j is commonly used for me, so I figured these should be supported here as well.
2019-03-06 Drop support for lsp-javascript-flowWilliam Carroll1-5/+0
This package was deprecated. See the GH Readme for more details.
2019-03-05 Reduces font-sizeWilliam Carroll1-2/+2
10 was just too big on my gLinux 4k setup.
2019-03-05 Parameterizes wpc/find-file functionWilliam Carroll1-2/+10
Supports a filename as a parameter to my wrapped version of evil-find-file.
2019-01-13 Remove Emacs spamWilliam Carroll18-276/+158
My inconsistent git history-keeping is coming to bite me here. At the moment, I can only speculate about what went wrong here. The gist is this: I unintentionally committed files that were supposed to be ignored This commit removes those files which includes: - auto-save-list - elpa packages - quelpa packages - misc
2018-10-02 Updates to Emacs preferencesWilliam Carroll2-1/+5
- Prefers "$HOME" to "~/urbint" for current project - Prefers dark colorscheme - Allows source-jumping to Emacs (nixify this to remove dep on path/to/source)
2018-10-02 Support PythonWilliam Carroll1-0/+14
Adds configuration for my Python preferences.
2018-09-10 Support Vim, Tmux, Emacs with StowWilliam Carroll18-0/+1009
After moving off of Meta, Dotfiles has a greater responsibility to manage configs. Vim, Tmux, and Emacs are now within Stow's purview.