feat(nvim): word wrap and snap tree width to characters

This commit is contained in:
Pihkaal
2024-06-01 11:58:41 +02:00
parent 68b483f89c
commit cf2637d33e
5 changed files with 36 additions and 28 deletions

View File

@@ -14,5 +14,5 @@ export const NvimEditor = (props: { source: string | undefined }) => {
});
}, [props.source]);
return <div className="h-full">{loading ? "Loading..." : data}</div>;
return <p>{loading ? "Loading..." : data}</p>;
};