removed lorem ipsum plugin and changed some colorschemes
This commit is contained in:
parent
e8dddacc01
commit
e1e20b1094
4 changed files with 48 additions and 60 deletions
2
init.lua
2
init.lua
|
@ -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")
|
||||||
|
|
|
@ -7,24 +7,10 @@ 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 = {},
|
|
||||||
config = function()
|
|
||||||
require("flow").setup({
|
|
||||||
dark_theme = true, -- Set the theme with dark background.
|
|
||||||
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 = {
|
opts = {
|
||||||
style = {
|
style = {
|
||||||
italic_comments = false,
|
italic_comments = false,
|
||||||
|
@ -45,8 +31,9 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ribru17/bamboo.nvim",
|
"ribru17/bamboo.nvim",
|
||||||
config = function()
|
-- config = function()
|
||||||
require("bamboo").setup({
|
-- require("bamboo").setup({
|
||||||
|
opts = {
|
||||||
-- ────────────────────────────< optional configuration here >─────────────────────────
|
-- ────────────────────────────< optional configuration here >─────────────────────────
|
||||||
code_style = {
|
code_style = {
|
||||||
comments = { italic = false, bold = true },
|
comments = { italic = false, bold = true },
|
||||||
|
@ -63,7 +50,8 @@ return {
|
||||||
highlights = { -- Override highlight groups
|
highlights = { -- Override highlight groups
|
||||||
["@comment"] = { fg = "#555653" },
|
["@comment"] = { fg = "#555653" },
|
||||||
},
|
},
|
||||||
})
|
},
|
||||||
end,
|
-- })
|
||||||
|
-- end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 ")
|
|
||||||
}
|
|
15
lua/pika/plugins/lorem_ipsum.lua.disabled
Normal file
15
lua/pika/plugins/lorem_ipsum.lua.disabled
Normal 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 "),
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue