Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
This commit partially reverts 386d237f. I think this configuration line
was causing errors because my neovim version config didn't actually
support the feature.
|
|
|
|
|
|
I am tired of fighting with literally every single tool (neovim, git,
alejandre) to allow tabs inside the Lua code in the big string.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
After attempting to use this configuration on another device, it turns
out that the persistent data directories were being created with the
wrong permissions.
|
|
Here are the changes:
- Spaces were being caught as part of the mapping, causing the user to
move diagonally when using j/k. These have been removed.
- Moved to the correction section.
- Made buffer-local, since this is the most common usecase.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
I thought this restriction was already being enforced since I set
systemd.services."${domain}-source".after = ["network-online.target"]
but that apparently wasn't enough. I had to also ensure the timer, which
triggered the service was ordered after "network-online.target".
|
|
|
|
|
|
|
|
This patch sets up a Gleam development environment on Muhammed.
I also took this opportunity to move a whole bunch of
development-related filetype plugins to Muhammed, reducing closure size
on Ahmed.
|
|
|
|
|
|
CGit farms out the handling of the HTTP requests sent by the Git CLI to
another CGI script. This script was failing because of "dubious
ownership". This is a security check run by Git to ensure malicious
repositories on network drives don't get arbitrary code execution. The
problem is: the CGI script was running as root, as that is what the
fcgiwrap systemd service was configured for, but the repository is owned
by the 'git' user.
Since I trust the repositories, I had to patch Git to ignore this mark.
Actually getting the NixOS CGit module to use the patched version of Git
proved rather difficult...
In the future I should probably
a) Make sure fcgiwrap isn't running as root since it directly interacts
with all sorts of untrusted user input.
b) Remove this ugly hack. There's a reason for the security check after
all. Just because it matters _less_ in this case doesn't mean it's
wise to ignore it completely.
|
|
|
|
Conjure keeps getting in my way because it pops up when it isn't wanted
and rebinds my keys.
|
|
|
|
|
|
The Nix store was growing quite large. It was consuming a lot of disk
space with some really old stuff.
In the future, I might need to tweak it a bit more; it seems a bit too
aggressive right now. Even recently used projects require rebuilding.
|
|
|
|
|
|
The script didn't check the theme upon startup, which caused some issues
if the system-wide theme change happened while iTerm2 was closed.
This new version always updates the iTerm2 theme based on the system
theme upon startup.
|