feat: basic nvim setup and other partially working stuff

This commit is contained in:
2024-01-26 16:49:00 +01:00
parent 18239963dd
commit 0275a24b1f
9 changed files with 121 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
import { NvimStatusBar } from "./NvimStatusBar";
import { NvimTree } from "./NvimTree";
export const Nvim = () => {
return (
<div>
<div className="flex">
<div className="w-fit bg-green-500">
<NvimTree />
</div>
<div className="flex-1 bg-blue-500"></div>
</div>
<div className="h-fit bg-red-500">
<NvimStatusBar />
</div>
</div>
);
};