diff options
author | delta <darkussdelta@gmail.com> | 2025-09-13 19:55:00 +0200 |
---|---|---|
committer | delta <darkussdelta@gmail.com> | 2025-09-13 19:55:00 +0200 |
commit | 031bf426ca73146d9253548e77f90ec112ebcedb (patch) | |
tree | b3dcd2de915ba1c31ad7bec2e30fc44df9226251 /README.md |
initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..b829dcd --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# prismite.nvim - a colourful and comfy nvim theme + +Colors can be found [here](https://darkuss.twoexem.com/prismite.html) + +## Installation +### lazy.nvim +```lua +{ + { + "git.twoexem.com/prismite.nvim", + dir = "/home/delta/Documents/RealProjects/lua/prismite.nvim", + lazy = false, + priority = 1000, + config = function() + vim.cmd [[colo prismite]] + end, + }, +} +``` + |