Compare commits

...

3 commits

Author SHA1 Message Date
b65380e325 flake: dev-shells: remove redundant 'pre-commit'
All checks were successful
ci/woodpecker/push/check Pipeline was successful
It's already being installed by the shell hook.
2025-03-28 15:27:25 +00:00
49db8cd3ec home: vim: remove 'fastfold' configuration
All checks were successful
ci/woodpecker/push/check Pipeline was successful
I missed it in the original commit that removed the plug-in from my
configuration...
2025-03-27 16:08:10 +00:00
e3ca18e3af home: git: remove 'ignoreRevsFile'
All checks were successful
ci/woodpecker/push/check Pipeline was successful
I remember why I didn't set it globally now, it's because `git blame`
complains and errors out, rather than silently ignoring the setting,
when the file doesn't exist in a repo...

This reverts commit 5ae2eacd49.
2025-03-25 14:31:11 +00:00
3 changed files with 0 additions and 7 deletions

View file

@ -6,7 +6,6 @@
name = "NixOS-config";
nativeBuildInputs = with pkgs; [
gitAndTools.pre-commit
nixpkgs-fmt
];

View file

@ -75,7 +75,6 @@ in
# Makes it a bit more readable
blame = {
coloring = "repeatedLines";
ignoreRevsFile = ".git-blame-ignore-revs";
markIgnoredLines = true;
markUnblamables = true;
};

View file

@ -1,5 +0,0 @@
-- Intercept all fold commands
-- stylua: ignore
vim.g.fastfold_fold_command_suffixes = {
"x", "X", "a", "A", "o", "O", "c", "C", "r", "R", "m", "M", "i", "n", "N",
}