diff options
| -rw-r--r-- | lua/config/lazy.lua | 12 | ||||
| -rw-r--r-- | lua/plugins/rose-pine.lua | 7 |
2 files changed, 8 insertions, 11 deletions
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 +} |
