diff options
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, + }, +} +``` + |