From 67f75066367dbe06e17e21e0a38edcea571af7f5 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Wed, 28 Feb 2024 16:10:56 -0500 Subject: [PATCH] update size for git repos and kitty scrollback --- modules/common/applications/kitty.nix | 4 ++-- modules/common/shell/github.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/common/applications/kitty.nix b/modules/common/applications/kitty.nix index 10f4449..bab7e90 100644 --- a/modules/common/applications/kitty.nix +++ b/modules/common/applications/kitty.nix @@ -103,8 +103,8 @@ color21 = config.theme.colors.base06; # Scrollback - scrolling_lines = 10000; - scrollback_pager_history_size = 10; # MB + scrollback_lines = 10000; + scrollback_pager_history_size = 300; # MB # Window window_padding_width = 6; diff --git a/modules/common/shell/github.nix b/modules/common/shell/github.nix index 82d4dfa..2cc25f9 100644 --- a/modules/common/shell/github.nix +++ b/modules/common/shell/github.nix @@ -48,7 +48,7 @@ esac selected=$(gh repo list "$organization" \ - --limit 50 \ + --limit 100 \ --no-archived \ --json=name,description,isPrivate,updatedAt,primaryLanguage \ | jq -r '.[] | .name + "," + if .description == "" then "-" else .description |= gsub(","; " ") | .description end + "," + .updatedAt + "," + .primaryLanguage.name' \