removed lualine and addet witch-dark colorscheme. Also changed the way to install colorschemes + configs under ./lua/pika/plugins/colorschemes.lua

This commit is contained in:
pika 2024-07-30 18:39:46 +02:00
parent e69f225dfd
commit ebc341b853
8 changed files with 207 additions and 175 deletions

View file

@ -1,22 +1,22 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({ { import = "pika.plugins" }, { import = "pika.plugins.lsp" } }, {
checker = {
enabled = true,
notify = false,
},
change_detection = {
notify = false,
},
checker = {
enabled = true,
notify = true,
},
change_detection = {
notify = true,
},
})