feat(nvim-tree): fully working navigation

This commit is contained in:
2024-01-27 15:39:26 +01:00
parent a59c7c78fe
commit 55e28c1edf
6 changed files with 217 additions and 41 deletions

View File

@@ -0,0 +1,6 @@
import { createTRPCRouter } from "../../trpc";
import { getRepos } from "./getRepos";
export const github = createTRPCRouter({
getRepos,
});