From 721d1453078c104d7a00d680e7d25690de4c3b41 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Tue, 17 Sep 2024 14:45:35 -0700 Subject: [PATCH] feat: use unicode graph style for neogit --- config/plugins/qol.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config/plugins/qol.nix b/config/plugins/qol.nix index 36b3a52..99661e8 100644 --- a/config/plugins/qol.nix +++ b/config/plugins/qol.nix @@ -49,7 +49,10 @@ crates-nvim.enable = true; # git stuff gitsigns.enable = true; - neogit.enable = true; + neogit = { + enable = true; + settings.graph_style = "unicode"; + }; # Language specific tools markdown-preview.enable = true; ts-autotag.enable = true;