From d68c693dc53615397fd8f97fec948e47081c9907 Mon Sep 17 00:00:00 2001 From: Blake Romero Date: Thu, 23 Jan 2025 22:50:01 +0000 Subject: Add rose-pine theme & refactored lazy --- lua/config/lazy.lua | 12 +----------- lua/plugins/rose-pine.lua | 7 +++++++ 2 files changed, 8 insertions(+), 11 deletions(-) create mode 100644 lua/plugins/rose-pine.lua diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index f5ee74c..a26b7d1 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -22,14 +22,4 @@ vim.g.mapleader = " " vim.g.maplocalleader = "\\" -- Setup lazy.nvim -require("lazy").setup({ - spec = { - -- import your plugins - { import = "plugins" }, - }, - -- Configure any other settings here. See the documentation for more details. - -- colorscheme that will be used when installing plugins. - install = { colorscheme = { "habamax" } }, - -- automatically check for plugin updates - checker = { enabled = true }, -}) +require("lazy").setup("plugins") diff --git a/lua/plugins/rose-pine.lua b/lua/plugins/rose-pine.lua new file mode 100644 index 0000000..e27810f --- /dev/null +++ b/lua/plugins/rose-pine.lua @@ -0,0 +1,7 @@ +return { + "rose-pine/neovim", + name = "rose-pine", + config = function() + vim.cmd("colorscheme rose-pine") + end +} -- cgit