initial commit
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
--[[
|
||||
return {
|
||||
'marko-cerovac/material.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
local material = require "material"
|
||||
--local colours = require "material.colors"
|
||||
local ignores = require('ignoreConfig.colourConfig')
|
||||
vim.g.material_style = "darker"
|
||||
--vim.g.material_style = "palenight"
|
||||
material.setup({
|
||||
lualine_style = "default", -- Lualine style ( can be 'stealth' or 'default' )
|
||||
disable = ignores[1],
|
||||
custom_highlights = {
|
||||
Comment = { fg = "#b7b0bf" },
|
||||
LineNr = { fg = "#b7b0bf" },
|
||||
-- AlphaHeader = { fg = "#3661cf" },
|
||||
-- AlphaFooter = { fg = colours.main.red},
|
||||
},
|
||||
})
|
||||
vim.cmd('colorscheme material')
|
||||
|
||||
end,
|
||||
}
|
||||
|
||||
--material styles:
|
||||
--daker
|
||||
--lighter
|
||||
--oceanic
|
||||
--palenight
|
||||
--deep ocean
|
||||
--]]
|
||||
|
||||
--[[
|
||||
-- DRACULA
|
||||
return {
|
||||
-- add dracula
|
||||
"Mofiqul/dracula.nvim",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd('colorscheme dracula')
|
||||
end,
|
||||
}
|
||||
--]]
|
||||
|
||||
|
||||
|
||||
--[[
|
||||
return {
|
||||
"rebelot/kanagawa.nvim",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
local ignores = require('ignoreConfig.colourConfig')
|
||||
require('kanagawa').setup({
|
||||
theme = "lotus",
|
||||
compile = true,
|
||||
commentStyle = { italic = true },
|
||||
transparent = ignores.transparent,
|
||||
colors = {
|
||||
--palette = {
|
||||
-- -- change all usages of these colors
|
||||
-- --fujiGray = "#FFFFFF",
|
||||
--},
|
||||
theme = {
|
||||
all = {
|
||||
syn = {
|
||||
--comment = "#FF00FF",
|
||||
comment = "#CDD3D4",
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
vim.cmd("colorscheme kanagawa-dragon")
|
||||
-- colourschemes:
|
||||
-- wave (default)
|
||||
-- dragon (dark)
|
||||
-- lotus (MY EEEEYES!)
|
||||
end,
|
||||
--uncomment this and 'compile=true' in setup if compiling to bytecode
|
||||
build = function()
|
||||
vim.cmd("KanagawaCompile")
|
||||
end,
|
||||
}
|
||||
--]]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
--EVERFOREST
|
||||
return{
|
||||
"neanias/everforest-nvim",
|
||||
priority = 1000,
|
||||
config = function()
|
||||
local everforest = require("everforest");
|
||||
local ignore = require('ignoreConfig.colourConfig');
|
||||
everforest.setup({
|
||||
background = "hard",
|
||||
transparent_background_level = ignore.transparent,
|
||||
italics = true,
|
||||
|
||||
});
|
||||
everforest.load();
|
||||
vim.cmd("colorscheme everforest");
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user