Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-12-16 | r/165 feat(emacs): Make list of packages overridable | Vincent Ambo | 1 | -5/+6 | |
Exposes an `overrideEmacs` which can take a package function that receives the current package list and can make arbitrary modifications to it. This makes it possible for me to maintain a private overlay for e.g. work purposes with packages that should not be visible in my public repos. | |||||
2019-12-16 | r/164 feat(emacs.d): Install refine | Vincent Ambo | 1 | -3/+2 | |
2019-12-16 | r/163 fix(emacs.d): Set correct magit-repository-directories path | Vincent Ambo | 1 | -1/+2 | |
This was set to my old home directory name from a different machine and I had low-key been wondering why it didn't work, but not enough to go do something about it. | |||||
2019-12-16 | r/162 fix(term-switcher): Add dependency on vterm | Vincent Ambo | 2 | -2/+3 | |
2019-12-16 | r/161 fix(emacs.d): Only highlight current line in prog-modes | Vincent Ambo | 2 | -3/+1 | |
This is extremely annoying in vterms, so now it's gone! | |||||
2019-12-16 | feat(term-switcher): Use emacs-libvterm instead of launching X-terms | Vincent Ambo | 1 | -39/+22 | |
2019-12-16 | feat(emacs.d): Install and configure emacs-libvterm | Vincent Ambo | 2 | -0/+14 | |
This incredible package provides a fully functional, libvterm based terminal emulator inside of Emacs. Killer feature: It's possible to switch the buffer into a full Emacs text mode (read-only) for selections and such. | |||||
2019-12-16 | r/158 feat(aoc2019): Add solutions for day4 | Vincent Ambo | 1 | -0/+73 | |
Finally an excuse to use some cl-defstruct magic in Elisp! | |||||
2019-12-16 | r/157 feat(aoc2019): Add solution for day3/2 | Vincent Ambo | 1 | -17/+23 | |
2019-12-15 | chore(emacs.d): Use local term-switcher package | Vincent Ambo | 3 | -3/+3 | |
2019-12-15 | refactor(emacs-pkgs): Extract term-switcher into separate emacs pkg | Vincent Ambo | 3 | -36/+86 | |
2019-12-15 | chore(emacs.d): Remove smartparens | Vincent Ambo | 3 | -4/+1 | |
I actually find a lot of its behaviour very annoying, rather than smart. Good old electric-pair-mode usually does what I want. | |||||
2019-12-15 | fix(emacs.d): Fix uses use-package's :config instead of :init | Vincent Ambo | 1 | -10/+10 | |
In several places I used `:init` instead of `:config` and things worked due to lazy loading anyways. That's no excuse not to fix it though ... | |||||
2019-12-15 | refactor(emacs.d): Use dottime from my dottime package | Vincent Ambo | 3 | -17/+4 | |
Instead of locally advicing format-time-string, use my dottime package. | |||||
2019-12-15 | feat(emacs-pkgs): Check in separate dottime package | Vincent Ambo | 2 | -0/+66 | |
This package adds a toggle for displaying modeline time in dottime, as well as a function for formatting time as dottime generically. | |||||
2019-12-15 | chore(emacs): Move carp-mode to third-party | Vincent Ambo | 1 | -20/+2 | |
2019-12-15 | r/155 feat(emacs.d): Introduce custom mc/mark-dwim cursor marker | Vincent Ambo | 2 | -0/+28 | |
Adds a "do what I mean" multiple-cursor selection with the logic that I find most useful: * If there is no active region, mark the next line (or lines, based on prefix argument) * If there is an active region that spans multiple lines, call `mc/edit-lines` * If there is an active region on a single line, trigger a custom selection hydra with functionality equivalent to `mc/mark-more-like-this-extended` but a slightly improved user experience Hopefully this will make it easier to get into the habit of actually using multiple-cursors without calling the mc commands via M-x | |||||
2019-12-15 | r/154 chore(emacs.d): Comment out not-currently-used email bindings | Vincent Ambo | 1 | -3/+3 | |
2019-12-14 | r/152 chore(tools): Add 'rink' | Vincent Ambo | 2 | -0/+4 | |
2019-12-14 | r/151 refactor(tools): __dispatch.sh now uses relative paths | Vincent Ambo | 2 | -3/+3 | |
This enables usage of __dispatch.sh from anywhere, even outside of the depot. Specifically this means I can add `~/depot/bin` to my $PATH and all the registered tools work from anywhere. | |||||
2019-12-14 | r/150 fix(emacs.d): Fix loading of custom.el | Vincent Ambo | 1 | -3/+2 | |
2019-12-14 | r/149 feat(emacs.d): Add function to open depot in magit | Vincent Ambo | 1 | -3/+3 | |
2019-12-14 | r/147 chore(emacs.d): Clean up <tab> bindings | Vincent Ambo | 2 | -20/+9 | |
One simple rule to rule them all: In prog-mode, <tab> tries to invoke company. | |||||
2019-12-14 | r/146 fix(emacs.d): Let emacs write to customize configuration | Vincent Ambo | 1 | -3/+10 | |
Configures Emacs' `customize` to write directly to my Emacs configuration. This comes with the caveat that the new config will only be loaded if my Emacs is rebuilt. | |||||
2019-12-14 | r/145 feat(tools/emacs): Build fully pre-configured Emacs | Vincent Ambo | 1 | -13/+12 | |
Builds an Emacs that is not only configured with the required packages but with the entire Emacs configuration for my personal setup. This means that `nix-env -iA tools.emacs` will install a fully-configured Emacs that can be launched as the window manager from my ~/.xsession. | |||||
2019-12-14 | r/144 chore(emacs.d): Move init/* to config/* | Vincent Ambo | 11 | -23/+17 | |
2019-12-14 | r/143 chore: Remove some configuration from a previous life | Vincent Ambo | 1 | -10/+2 | |
2019-12-14 | r/142 feat(emacs.d): Load local Emacs configuration if present | Vincent Ambo | 1 | -0/+6 | |
This allows me to have local Emacs configuration that is tracked separately from the rest. | |||||
2019-12-14 | r/141 chore(emacs.d): Import several months of privately tracked changes | Vincent Ambo | 7 | -232/+274 | |
These changes were made in a fork of my configuration that is not publicly available and detailed history will not be included in this public commit. | |||||
2019-12-14 | r/140 feat(emacs.d): Display modeline time in dottime | Vincent Ambo | 1 | -0/+14 | |
See dotti.me for more information about dottime. <3 edef | |||||
2019-12-14 | r/139 feat(emacs.d): Generalise counsel terminal selector | Vincent Ambo | 1 | -23/+22 | |
This makes it possible to use my terminal selector with any X11 terminal, configurable via two simple variables. | |||||
2019-12-14 | r/137 refactor(emacs): Rewrite derivation to match depot layout | Vincent Ambo | 1 | -74/+49 | |
2019-12-14 | r/136 chore(emacs): Move Nix derivation for building Emacs over from infra | Vincent Ambo | 1 | -0/+138 | |
2019-12-14 | r/130 docs(emacs): Update README file | Vincent Ambo | 1 | -4/+5 | |
2019-12-14 | r/129 merge(emacs): Merge (unrelated) emacs.d history into tools/emacs | Vincent Ambo | 13 | -0/+1079 | |
2019-12-14 | chore(emacs): Move emacs config to tools/emacs | Vincent Ambo | 13 | -0/+1079 | |
2019-12-13 | r/125 refactor(tools/blog_cli): Build with buildGo.nix | Vincent Ambo | 2 | -118/+6 | |
This is the first Go package properly built with external dependencies using buildGo.nix | |||||
2019-12-10 | r/120 feat(aoc2019): Solve day 3 puzzles | Vincent Ambo | 1 | -0/+58 | |
Now this was quite something. | |||||
2019-12-09 | r/117 feat(aoc2019): Solve day 2 puzzles | Vincent Ambo | 1 | -0/+53 | |
2019-12-09 | r/116 feat(aoc2019): Solve day 1 puzzles | Vincent Ambo | 1 | -0/+28 | |
2019-12-09 | r/115 feat(tools): Add auto-dispatch for Advent of Code solutions | Vincent Ambo | 3 | -1/+5 | |
2019-12-09 | r/112 feat(tools): Set up Advent of Code 2019 scaffolding | Vincent Ambo | 1 | -0/+22 | |
2019-12-09 | r/103 fix: Amend import paths to use whitelisted nixpkgs | Vincent Ambo | 2 | -2/+2 | |
2019-12-09 | r/100 refactor: Introduce new layout with nixpkgs in third_party | Vincent Ambo | 2 | -2/+2 | |
This is not the final layout yet, but makes it so that my top-level attribute set is no longer overlaid into nixpkgs itself. This is useful for other people who are importing my monorepo. | |||||
2019-11-22 | fix(tools): Enable CI runs for tools.gotest | Vincent Ambo | 1 | -1/+1 | |
2019-11-22 | feat(tools): Add 'gotest' program to demonstrate pkgs.buildGo | Vincent Ambo | 4 | -0/+63 | |
This is a tiny program that does nothing but exists to demonstrate pkgs.buildGo by building a program that depends on a local library as well as a protobuf definition. | |||||
2019-11-15 | feat(nix): Filter projects that should be built by CI | Vincent Ambo | 2 | -2/+4 | |
Instead of specifying CI projects manually, this filters them to move the CI configuration into the derivations `meta` attributes. | |||||
2019-11-15 | chore(nix): Move files around to conform to new read-tree layout | Vincent Ambo | 3 | -16/+16 | |
Broadly speaking, the following things are included: * there is now a uniform `args` struct that is passed to all derivations, package headers have been changed appropriately * overrides are now loaded from a separate `override` folder just using read-tree.nix * third-party packages have moved into the `third_party` attribute set | |||||
2019-09-03 | feat(tools): Introduce pass-compatible wrapper using Cloud KMS | Vincent Ambo | 3 | -0/+64 | |
Adds a shell script that supports a subset of the 'pass' interface for compatibility with kontemplate, and wraps kontemplate in a script that places this version on the PATH. This makes it possible to use Cloud KMS encrypted secrets with kontemplate. | |||||
2019-09-02 | r/74 chore(third_party): Remove git-appraise | Vincent Ambo | 2 | -4/+0 | |
Not actually in use here ... |