blob: b605786ea1f6d0c59e5f8c0e135013e713cc0fb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
vim.pack.add({
"https://github.com/nvim-lualine/lualine.nvim",
})
local wc = require("wordcount")
require("lualine").setup({
options = {
component_separators = "",
section_separators = "",
},
sections = {
lualine_y = {
-- Add wordcount
{ wc.wordcount, cond = wc.is_available },
-- Existing conf
"progress",
},
},
})
vim.o.cmdheight = 0 -- Puts Lualine at very bottom
|