[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

@ -48,16 +48,14 @@ status_components.active[1][1] = {
-- Use the name of the mode instead of the icon
icon = ''
}
status_components.active[3][1] = {
provider = {
name = 'position',
opts = {
padding = true
}
}
provider = 'word_count'
}
status_components.active[3][2] = {
provider = 'position'
}
status_components.active[3][3] = {
provider = 'line_percentage',
hl = {
fg = 'blue',
@ -69,7 +67,7 @@ status_components.active[3][2] = {
str = 'block'
}
}
status_components.active[3][3] = {
status_components.active[3][4] = {
provider = 'scroll_bar'
}
local custom_providers = {
@ -84,6 +82,9 @@ local custom_providers = {
end,
git_change = function()
return git_diff('changed'), ''
end,
word_count = function()
return vim.fn.wordcount().words .. 'W '
end
}
status_config.components = status_components

View File

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