feat: basic nvim setup and other partially working stuff
This commit is contained in:
19
src/components/Nvim/Nvim.tsx
Normal file
19
src/components/Nvim/Nvim.tsx
Normal 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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user