Easily generate dummy text in Neovim
- - Generate words from another file
- - Create ':LoremIpsum' command w/ args
- - Integrate with completion engine (nvim-cmp)
use {
'derektata/lorem.nvim',
config = function()
require('lorem').setup({
sentenceLength = "medium",
comma_chance = 0.2,
max_commas_per_sentence = 2,
})
end
}
return {
'derektata/lorem.nvim',
config = function()
require('lorem').setup({
sentenceLength = "medium",
comma_chance = 0.2,
max_commas_per_sentence = 2,
})
end
}
The plugin is designed to be as plug-and-play as possible, and therefore no setup is needed as it is shipped with sensible defaults. It is hovewer possible to customize the behavior of the plugin in setup like this:
require('lorem').setup({
sentenceLength = "mixed", -- using a default configuration
comma_chance = 0.3, -- 30% chance to insert a comma
max_commas_per_sentence = 2 -- maximum 2 commas per sentence
})
-- or
require('lorem').setup({
sentenceLength = { -- custom configuration
words_per_sentence = 8,
sentences_per_paragraph = 6
},
comma_chance = 0.3, -- 30% chance to insert a comma
max_commas_per_sentence = 2 -- maximum 2 commas per sentence
})
This property controls the likelihood of inserting a comma after a word within a sentence. This property allows for the generation of more natural-looking text by adding occasional commas, mimicking the natural pauses in human writing.
This property determines the intervals for how long the sentences of latin words should be before ending them with a period. The following values are available:
This property sets the maximum number of commas that can be inserted in a single sentence. This property ensures that sentences do not become overly complex or cluttered with too many commas, maintaining readability and natural flow.
Value | Words Per Sentence | Sentences Per Paragraph |
---|---|---|
short | 5 | 3 |
medium | 10 | 5 |
long | 14 | 7 |
mixedShort | 8 | 4 |
mixed | 12 | 6 |
mixedLong | 16 | 8 |
# default: 100
:LoremIpsum <mode> <number_of_words>
ββββββββββββββ
β β
β Menu β
βdepending onβ
βββββββββββββββ previous β
β words ββ selection β
β paragraphs ββ β
ββββββββββββββββββββββββββββ
ββββββββββββββββββββββββββββββββββββββββββββββββ
:LoremIpsum <TAB> <TAB>
# i.e.
:LoremIpsum 1000 words
:LoremIpsum 2 paragraphs
:LoremIpsum 3 paragraphs 8 6 -- Generate 3 paragraphs, each with 6 sentences, each sentence with 8 words
# print lorem ipsum words to the terminal
# (default: 100)
nvim --headless -c 'lua print(require("lorem").gen_words())' +qall | tail -n +1
# print 500 words to the terminal
nvim --headless -c 'lua print(require("lorem").gen_words(500))' +qall | tail -n +1