local wc = require("wordcount") return { "nvim-lualine/lualine.nvim", opts = { sections = { lualine_y = { -- Add wordcount { wc.wordcount, cond = wc.is_available }, -- Existing conf { "progress", separator = " ", padding = { left = 1, right = 0 } }, { "location", padding = { left = 0, right = 1 } }, }, }, }, }