diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 6a475c5..b7603ef 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -63,7 +63,8 @@ body: -- Install plugins local plugins = { - "rose-pine/neovim.nvim", + "rose-pine/neovim", + name = "rose-pine", config = function() -- Add relevant Rosé Pine config below require("rose-pine").setup({}) diff --git a/readme.md b/readme.md index f44b0b7..c034b2a 100644 --- a/readme.md +++ b/readme.md @@ -13,6 +13,21 @@ ## Usage +> With [lazy.nvim](https://github.com/folke/lazy.nvim) + +```lua +{ + 'rose-pine/neovim', + name = 'rose-pine', + lazy = false, + priority = 1000, + config = function() + require("rose-pine").setup() + vim.cmd('colorscheme rose-pine') + end +} +``` + > With [packer.nvim](https://github.com/wbthomason/packer.nvim) ```lua @@ -20,6 +35,7 @@ use({ 'rose-pine/neovim', as = 'rose-pine', config = function() + require("rose-pine").setup() vim.cmd('colorscheme rose-pine') end })