[2024-05-20] Add word count, set tabstop

This commit is contained in:
Andrew Conlin 2024-05-20 09:21:54 +01:00
parent fa561b403a
commit ccf603a853
2 changed files with 20 additions and 11 deletions

View File

@ -26,7 +26,7 @@ status_components.active[1][1] = {
return { return {
name = (require('feline.providers.vi_mode').get_mode_highlight_name()) .. " ", name = (require('feline.providers.vi_mode').get_mode_highlight_name()) .. " ",
bg = require('feline.providers.vi_mode').get_mode_color(), bg = require('feline.providers.vi_mode').get_mode_color(),
fg = 'bg', fg = 'bg',
style = 'bold' style = 'bold'
} }
end, end,
@ -45,19 +45,17 @@ status_components.active[1][1] = {
end end
} }
}, },
-- Use the name of the mode instead of the icon -- Use the name of the mode instead of the icon
icon = '' icon = ''
} }
status_components.active[3][1] = { status_components.active[3][1] = {
provider = { provider = 'word_count'
name = 'position',
opts = {
padding = true
}
}
} }
status_components.active[3][2] = { status_components.active[3][2] = {
provider = 'position'
}
status_components.active[3][3] = {
provider = 'line_percentage', provider = 'line_percentage',
hl = { hl = {
fg = 'blue', fg = 'blue',
@ -69,7 +67,7 @@ status_components.active[3][2] = {
str = 'block' str = 'block'
} }
} }
status_components.active[3][3] = { status_components.active[3][4] = {
provider = 'scroll_bar' provider = 'scroll_bar'
} }
local custom_providers = { local custom_providers = {
@ -84,7 +82,10 @@ local custom_providers = {
end, end,
git_change = function() git_change = function()
return git_diff('changed'), '' return git_diff('changed'), ''
end end,
word_count = function()
return vim.fn.wordcount().words .. 'W '
end
} }
status_config.components = status_components status_config.components = status_components
status_config.custom_providers = custom_providers status_config.custom_providers = custom_providers

View File

@ -21,3 +21,11 @@ nmap k gk
" use H and L for beginning/end of line " use H and L for beginning/end of line
nmap H ^ nmap H ^
nmap L $ nmap L $
" wrap text and split on words
set wrap
set linebreak
set nolist
set shiftwidth=4
set tabstop=4