#Vimovember Day 4 - Numbers
If you use CTRL-a and CTRL-x for increment/decrement numbers, do yourself a favor and add the following to your #Neovim configuration.
vim.opt.nrformats:append('blank')
or
set nrformats+=blank
for #Vim
Without this setting, Vim "increments" sprint-23 to sprint-22 (because it interprets -22 as negative)
With the setting, Vim differentiates between
sprint-23 (increments to sprint-24)
and
-23 (increments to -22)
See https://salferrarello.com/vim-increment-number-with-dash/