diff options
author | Minijackson <minijackson@riseup.net> | 2024-10-02 17:21:59 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2024-10-02 17:21:59 +0200 |
commit | e743e2de7e0f632ab993b256849c439428423c31 (patch) | |
tree | 04be16d736741ab2ce32517478865a594c630aea /common | |
parent | b759ee7b0c9cbefc15b1b1b45e1c9db150a2a304 (diff) | |
download | nixos-config-reborn-e743e2de7e0f632ab993b256849c439428423c31.tar.gz nixos-config-reborn-e743e2de7e0f632ab993b256849c439428423c31.zip |
common/git: don't use raw nvim as jujutsu's diff-editor
Doesn't work without a plugin, and it's officially not recommended
Diffstat (limited to 'common')
-rw-r--r-- | common/commandline/git.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/commandline/git.nix b/common/commandline/git.nix index 24df5c1..c107413 100644 --- a/common/commandline/git.nix +++ b/common/commandline/git.nix | |||
@@ -129,7 +129,7 @@ _inputs: | |||
129 | ui = { | 129 | ui = { |
130 | default-command = [ "log" ]; | 130 | default-command = [ "log" ]; |
131 | # TODO: setup hunk.nvim as diff-editor | 131 | # TODO: setup hunk.nvim as diff-editor |
132 | diff-editor = "nvim"; | 132 | # diff-editor = "nvim"; |
133 | diff.tool = "difft"; | 133 | diff.tool = "difft"; |
134 | }; | 134 | }; |
135 | 135 | ||