13 lines
328 B
Lua
13 lines
328 B
Lua
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,
|
|
}
|