removed lorem ipsum plugin and changed some colorschemes

This commit is contained in:
pika 2024-09-27 10:58:35 +02:00
parent e8dddacc01
commit e1e20b1094
4 changed files with 48 additions and 60 deletions

View file

@ -6,4 +6,4 @@ require("pika.lazy")
-- │ themes are under ./lua/pika/plugins/colorschemes.lua │ -- │ themes are under ./lua/pika/plugins/colorschemes.lua │
-- ╰──────────────────────────────────────────────────────╯ -- ╰──────────────────────────────────────────────────────╯
vim.cmd.colorscheme("lavish") vim.cmd.colorscheme("bamboo")

View file

@ -7,32 +7,18 @@ return {
{ "sainnhe/sonokai" }, { "sainnhe/sonokai" },
{ "samharju/synthweave.nvim" }, { "samharju/synthweave.nvim" },
{ "66RING/zephyr-nvim" }, { "66RING/zephyr-nvim" },
{ "savq/melange-nvim" }, { "pauchiner/pastelnight.nvim" },
-- { "RedsXDD/neopywal.nvim" },
{ {
"0xstepit/flow.nvim", "ferdinandrau/lavish.nvim",
lazy = false, opts = {
opts = {}, style = {
config = function() italic_comments = false,
require("flow").setup({ italic_strings = false,
dark_theme = true, -- Set the theme with dark background. transparent = false,
high_contrast = false, -- Make the dark background darker or the light background lighter. },
transparent = false, -- Set transparent background. },
fluo_color = "pink", -- Color used as fluo. Available values are pink, yellow, orange, or green.
mode = "desaturate", -- Mode of the colors. Available values are: dark, bright, desaturate, or base.
aggressive_spell = true, -- Use colors for spell check.
})
end,
}, },
{
'ferdinandrau/lavish.nvim',
opts = {
style = {
italic_comments = false,
italic_strings = false,
transparent = false,
},
},
},
{ {
"scottmckendry/cyberdream.nvim", "scottmckendry/cyberdream.nvim",
name = "cyberdream", name = "cyberdream",
@ -45,25 +31,27 @@ return {
}, },
{ {
"ribru17/bamboo.nvim", "ribru17/bamboo.nvim",
config = function() -- config = function()
require("bamboo").setup({ -- require("bamboo").setup({
-- ────────────────────────────< optional configuration here >───────────────────────── opts = {
code_style = { -- ────────────────────────────< optional configuration here >─────────────────────────
comments = { italic = false, bold = true }, code_style = {
conditionals = { italic = true }, comments = { italic = false, bold = true },
keywords = { bold = true }, conditionals = { italic = true },
functions = {}, keywords = { bold = true },
namespaces = { italic = true }, functions = {},
parameters = { italic = true }, namespaces = { italic = true },
strings = {}, parameters = { italic = true },
variables = { bold = true }, strings = {},
}, variables = { bold = true },
-- ─< Custom Highlights -- >──────────────────────────────────────────────────────────── },
colors = {}, -- Override default colors -- ─< Custom Highlights -- >────────────────────────────────────────────────────────────
highlights = { -- Override highlight groups colors = {}, -- Override default colors
["@comment"] = { fg = "#555653" }, highlights = { -- Override highlight groups
}, ["@comment"] = { fg = "#555653" },
}) },
end, },
-- })
-- end,
}, },
} }

View file

@ -1,15 +0,0 @@
return {
"derektata/lorem.nvim",
config = function()
require("lorem").setup({
sentenceLength = { -- custom configuration
words_per_sentence = 6,
sentences_per_paragraph = 4,
},
comma_chance = 0.3, -- 30% chance to insert a comma
max_commas_per_sentence = 2, -- maximum 2 commas per sentence
})
end,
-- ─< LoremIpsum generator >────────────────────────────────────────────────────────────
vim.keymap.set("n", "<leader>L", ":LoremIpsum ")
}

View file

@ -0,0 +1,15 @@
return {
"derektata/lorem.nvim",
config = function()
require("lorem").setup({
sentenceLength = { -- custom configuration
words_per_sentence = 6,
sentences_per_paragraph = 4,
},
comma_chance = 0.3, -- 30% chance to insert a comma
max_commas_per_sentence = 2, -- maximum 2 commas per sentence
})
end,
-- ─< LoremIpsum generator >────────────────────────────────────────────────────────────
vim.keymap.set("n", "<leader>L", ":LoremIpsum "),
}