about summary refs log tree commit diff
path: root/emacs
AgeCommit message (Collapse)AuthorFilesLines
2020-09-08 Define KBD gu to browse-url-at-pointWilliam Carroll1-0/+1
This is handy!
2020-09-08 Prefer .ssh/config instead of Tramp's defaultsWilliam Carroll1-0/+5
Instruct Tramp to use my SSH settings in .ssh/config.
2020-09-07 Install additional KBDs for bookmark.elWilliam Carroll1-1/+3
Generate KBDs to call `find-file` on the bookmark.
2020-09-07 Drop glinux attribute from Emacs derivationWilliam Carroll1-7/+0
My google-briefcase has subsumed this responsibility.
2020-09-07 Remove Emacs config for Google languagesWilliam Carroll2-4/+0
My custom language settings conflict with Google-Emacs's language settings, and I'm not interested in finding a more harmonious solution. For now, I'm dropping my settings altogether in favor of Google-Emacs's settings.
2020-09-07 Depend on fzfWilliam Carroll1-0/+1
Add fzf to PATH.
2020-09-07 Define KBDs for quickly visiting BRIEFCASE magit-statusWilliam Carroll1-1/+5
I'd rather be able to jump straight here instead of visiting a file or directory first.
2020-09-07 Drop support for Nix home-managerWilliam Carroll2-10/+10
On my work machines, I'm finding home-manager to be more bothersome than helpful. I'm preferring a simpler workflow for the time being.
2020-09-07 Add nix to Emacs's packagesWilliam Carroll1-0/+1
The code in `wpc-nix.el` relies on `nix-env` being available on $PATH.
2020-09-07 Expose path to GOOGLE_BRIEFCASE as env varWilliam Carroll1-0/+1
After ~1-2 hours of debugging, I realized that locally I was reading from .envrc but when Emacs initializes, it is not reading from .envrc. I don't know how to ideally handle this, so for now I'm including GOOGLE_BRIEFCASE as an environment variable and moving on with my life.
2020-09-07 Display all byte-compile-warningsWilliam Carroll1-6/+0
I've reconsidered; setting this to just '(cl-functions) is not what I want.
2020-09-07 defgroup for timestring.elWilliam Carroll1-2/+7
Trying to be more idiomatic.
2020-09-07 Increase the default size of my workstation fontWilliam Carroll1-1/+1
Consider moving some of this logic into my work-specific configuration.
2020-09-07 Debug defensive call to (server-start)William Carroll1-1/+1
I was previously relying on the variable `server-process` being set, but this only resulted in false-negatives and broken initializations. This should make my Emacs initialization more stable.
2020-09-07 Add direnv to Emacs dependenciesWilliam Carroll1-0/+1
direnv.el needs direnv available on $PATH.
2020-09-07 Conditionally load-themeWilliam Carroll1-3/+6
When the `window-system` is set, use `solarized-light`. When it's not, use `wombat`.
2020-09-07 Conditionally start Emacs serverWilliam Carroll1-1/+2
Only attempt to start the Emacs server if there isn't already one running.
2020-09-07 Vertically align search results conditionallyWilliam Carroll1-10/+13
Only when `window-system` is set.
2020-09-07 Install keybindings for bookmark.elWilliam Carroll1-0/+4
I would like to restore these KBDs.
2020-09-07 Suppress cl deprecation warnings during initializationWilliam Carroll1-0/+6
See the URL I linked to for more information.
2020-09-07 Drop support for building emacs.glinuxWilliam Carroll1-3/+2
I'm defining a fork of this function in my work configuration, so I longer want this here.
2020-09-07 Debug project-find-file for briefcaseWilliam Carroll1-1/+1
As the name suggests, `f-parent-of?` only returns true when A is a *parent* of B. What I want instead if `f-ancestor-of?`.
2020-09-07 Expose withEmacsPath on emacs attributeWilliam Carroll1-4/+11
I need this for Nix code that exists outside of this repository.
2020-09-06 Prefer 'vc as the project-find-file type when at briefcase's rootWilliam Carroll1-4/+10
See the explanatory comment that I left in the code.
2020-09-06 Add defgroup vterm-mgt for vterm-mgtWilliam Carroll1-4/+9
In the past I used `defconst` in many of my Elisp libraries where I should've used something like: ```elisp ;; some/path/to/some-lib.el (defgroup some-lib nil) (defcustom some-lib-setting nil :group 'some-lib) ``` When I encounter code that I should've structured this way, I'm cleaning it up to prefer this more idiomatic pattern.
2020-09-04 Call make-process instead of call-process in scrot.elWilliam Carroll1-15/+7
While attempting to debug why pressing `C-s-s` from an X-window screenshots my entire screen, I switched from `call-process` to `make-process`, which is async. I still haven't debugged the original issue, but I think this is an improvement regardless.
2020-09-04 Restore KBDs for changing my font sizeWilliam Carroll1-0/+4
When I removed the KBD logic from fonts.el, I should have moved it here, but I did not.
2020-09-04 Debug broken pulse-audio KBDsWilliam Carroll1-4/+5
Looks like when I linted my Emacs I forgot to change the prefix from `pulse-audio/` to `pulse-audio-`.
2020-09-04 Enable font ligatures for Emacs 27!William Carroll2-0/+32
Now that Emacs is capable a rendering font ligatures, I defined a function to enable them in fonts.el. Everything works, and it's beautiful.
2020-09-02 Prevent warning during Emacs initializationWilliam Carroll1-1/+2
Now that my `script.el` is behaving as expected (wahoo!), start linting away anything that shows up in the `*Warnings*` and `*Errors*` buffers.
2020-09-02 Linting ElispWilliam Carroll11-21/+23
TL;DR: - Prefer cl-lib - Prefer spaces to tabs - Resolve various checkdoc complaints
2020-09-02 Remove KBD installations from more Elisp modulesWilliam Carroll2-33/+0
I originally liked this pattern, but now I'd prefer to put everything in keybindings.el.
2020-09-02 Require general.el for packages that depend on itWilliam Carroll12-0/+32
Since I'm calling `(require 'general)` in `wpc-package.el`, which gets called at the beginning of my `init.el` file, all sub-modules have `general`. I originally wanted this, but I'm beginning to rethink that preference. After `script.el` broke my CI because of a missing `general` dependency, I'm fixing it for `buffer.el` and all other modules that consume `general`.
2020-09-02 Add missing ts.el dependency to buffer.elWilliam Carroll1-0/+1
Since script.el depends on buffer.el now, buffer.el fails to evaluate because of a missing dependency on ts.el. Blindspots like this make me want to eventually support testing individual loads of each of the libraries in my .emacs.d/wpc directory.
2020-09-02 Debug undefined add-hook-before-saveWilliam Carroll4-5/+36
`use-package` complains that `add-hook-before-save` doesn't exist. This is because it's now named `macros-add-hook-before-save`. This fixes that.
2020-09-02 Add missing Elisp dependenciesWilliam Carroll10-0/+16
TL;DR: - Require cl-macs.el for modules using CL-style macros like `cl-defun` - Require struct.el for call to `struct-set!`
2020-09-02 Delete unused slack-snippets moduleWilliam Carroll1-228/+0
I haven't used Slack in awhile -- let alone Slack from Emacs.
2020-09-02 General Elisp lintingWilliam Carroll6-65/+9
TL;DR: - Remove `require` statements from init.el - Remove unused, auto-install KBDs for bookmark.el - Remove unused `require` statements from clipboard - Remove unused, commented-out code I would like for an Elisp linting stage to test for unused `require` statements, but I'm unsure how practical that is to support.
2020-09-02 Remove circular Elisp dependencyWilliam Carroll1-27/+0
maybe.el -> prelude.el -> maybe.el I should test for circular-dependencies in CI...
2020-09-02 Pull Emacs 27 from @tazjin's depotWilliam Carroll2-12/+5
Here's what happened: My `emacs.glinux` derivation relies on gLinux `/usr/bin/emacs`, and Google recently published version 27, so all corporate machines (i.e. this laptop) switched from Emacs 26 to Emacs 27 overnight. However, my Nix derivation was building all of the packages for Emacs 26, so some packages were compatible while others weren't. The Elisp package, `emr`, doesn't build for version 27, so I dropped it altogether.
2020-09-02 Rename alist.el to al.elWilliam Carroll10-108/+84
After switching my namespace separator from "/" to "-" the function, `alist-get`, clashed (surprise!) with the pre-existing function, `alist-get`. As I was struggling to debug my broken Emacs (it broke bc Emacs 27 rolled out), and I changed the module name, "alist", to "al" attempting to defuse the issue.
2020-09-02 Delete unused org-clubhouseWilliam Carroll1-365/+0
Sorry, @grfn! I haven't used Clubhouse is awhile...
2020-09-01 Apply checkdoc fixes to set.elWilliam Carroll1-3/+3
While I don't agree with what checkdoc is advising here, I'd rather not fight it.
2020-09-01 Redefine >> macro as >-> in >.elWilliam Carroll8-25/+52
I created a strangely named Elisp module, >.el, just to appease the CI gods. My gut tells me that this is a desperate idea and fails the smell test. I'm pretty eager to pass the linting phase of my Elisp CI, however, and I can always revert this.
2020-09-01 More Elisp lintingWilliam Carroll19-67/+62
In order for this to scale, I need to solve two things: 1. Ad-hoc ignore fill-column rules for URLs and other exceptions. 2. Run Elisp flychecker without evaluating my Elisp code and firing its side-effects.
2020-09-01 More Elisp lintingWilliam Carroll47-990/+1050
This should cover most of the remaining linting errors. After this, I expect fewer than ten linting errors.
2020-08-31 Lint string, macros.elWilliam Carroll36-204/+176
More of the same type of linting... basically preferring `namespace-` instead of `namespace/`.
2020-08-31 Delete bills.elWilliam Carroll1-26/+0
Another cold, stale Elisp module.
2020-08-31 Fix fill-column errorsWilliam Carroll3-7/+6
- removing stale comments - dropping stale KBDs
2020-08-31 Lint prelude.elWilliam Carroll29-164/+163
This was a doozey because I use it everywhere. Is there a better way to globally rename things? Aye aye aye... computers, man!