feat(nvim): improve tree and file switching, and implements links

This commit is contained in:
Pihkaal
2024-05-31 22:56:08 +02:00
parent 0c79ea457c
commit 96207863a9
12 changed files with 361 additions and 309 deletions

View File

@@ -1,3 +1,3 @@
export const NvimEditor = (props: { data: string }) => (
<div className="h-full">{props.data}</div>
export const NvimEditor = (props: { source: string | undefined }) => (
<div className="h-full">{props.source}</div>
);