36 lines
801 B
Lua
36 lines
801 B
Lua
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
if not (vim.uv or 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,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
require("lazy").setup({
|
|
"nvim-lualine/lualine.nvim",
|
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
"neanias/everforest-nvim",
|
|
version = false,
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
require("everforest").setup({
|
|
background = "hard",
|
|
transparent_background_level = 0,
|
|
italics = true,
|
|
disable_italic_comments = false,
|
|
})
|
|
end,
|
|
})
|
|
require("lualine").setup({
|
|
options = {
|
|
theme = "everforest",
|
|
}
|
|
})
|
|
vim.cmd([[colorscheme everforest]])
|