From ced837f1dd365b4d232831372e1e629bc4d3b521 Mon Sep 17 00:00:00 2001 From: montreal Date: Fri, 20 Feb 2026 14:30:49 +0100 Subject: [PATCH] README.md: added installation with lazy --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c5b919b..8836f83 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,17 @@ A colorscheme for Neovim. -The settings are based on the structure from [onedark.nvim](https://github.com/navarasu/onedark.nvim) (see license). \ No newline at end of file +The settings are based on the structure from [onedark.nvim](https://github.com/navarasu/onedark.nvim) (see license). + +## Installation with Lazy +```lua +{ + url = "https://gitea.thalassia.xyz/montreal/montreal.nvim.git", + name = "montreal", + lazy = false, + priority = 1000, + config = function() + vim.cmd([[colorscheme montreal]]) + end +} +```