Arch 2025 rice. Also contains a newly inspired neovim config.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
267 B

return {
getWords = function()
local wordcount = vim.fn.wordcount()
if wordcount.visual_words ~= nil then
return tostring(wordcount.visual_words) .. "/" .. tostring(wordcount.words) .. " W"
end
return tostring(wordcount.words) .. " W"
end
}