moves from plugin theme to single lua file

This commit is contained in:
Dennis Schoepf 2025-11-05 15:55:56 +01:00
parent b39c6faf50
commit fdd35fa934
7 changed files with 329 additions and 65 deletions

View file

@ -18,6 +18,8 @@ vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = " "
vim.g.maplocalleader = " "
vim.cmd([[colorscheme winterly]])
local options = {
backup = false, -- creates a backup file
clipboard = "unnamedplus", -- allows neovim to access the system clipboard
@ -72,7 +74,7 @@ require("lazy").setup({
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
install = { colorscheme = { "rose-pine" } },
install = { colorscheme = { "winterly" } },
-- automatically check for plugin updates
checker = { enabled = false },
})