From 909e835e4fcf425feb03152eccc1a2105bd75488 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Sun, 21 Dec 2025 19:08:25 +1000 Subject: [PATCH 1/3] Enable auto setup remote for get push --- alex/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/alex/home.nix b/alex/home.nix index 1697b67..b969875 100644 --- a/alex/home.nix +++ b/alex/home.nix @@ -146,6 +146,9 @@ init = { defaultBranch = "main"; }; + push = { + autoSetupRemote = true; + }; }; }; From 4d72ab88d713261151257d7b911616682e1aca5f Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Sun, 21 Dec 2025 19:08:39 +1000 Subject: [PATCH 2/3] Set branch for tree-sitter In a hopeful attempt at getting the bloody thing working. --- alex/nvim/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/alex/nvim/init.lua b/alex/nvim/init.lua index c37ca3c..bea2374 100644 --- a/alex/nvim/init.lua +++ b/alex/nvim/init.lua @@ -864,6 +864,7 @@ require("lazy").setup({ }, { -- Highlight, edit, and navigate code "nvim-treesitter/nvim-treesitter", + branch = 'master', build = ":TSUpdate", opts = { ensure_installed = { "python", "bash", "c", "diff", "html", "lua", "luadoc", "markdown", "vim", "vimdoc" }, From 1720bebb9e4b51cd78c1d6827952d0ace96e5e51 Mon Sep 17 00:00:00 2001 From: Alexander Wainwright Date: Sun, 21 Dec 2025 19:09:05 +1000 Subject: [PATCH 3/3] Allow tmux passthrough Sort of helps with image display. --- alex/tmux/tmux.conf.local | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/alex/tmux/tmux.conf.local b/alex/tmux/tmux.conf.local index 89fa45e..dd318aa 100644 --- a/alex/tmux/tmux.conf.local +++ b/alex/tmux/tmux.conf.local @@ -381,6 +381,11 @@ tmux_conf_urlscan_options="--compact --dedupe" # start with mouse mode enabled set -g mouse on +# allow passthrough for fancy stuff like images +set -g allow-passthrough on +set -g allow-rename off + + # force Vi mode # really you should export VISUAL or EDITOR environment variable, see manual #set -g status-keys vi