From 2ddb0fc6620e910254a7350dce90e4dddae35e81 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Fri, 26 Jun 2026 21:33:20 -0400 Subject: [PATCH] Revenge of the 2-digit years Now that we're deep into the 21st century, we can probably go to the 2-digit form. --- vim/vimrc.statusline | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc.statusline b/vim/vimrc.statusline index fcd2a0d..22826b0 100644 --- a/vim/vimrc.statusline +++ b/vim/vimrc.statusline @@ -28,7 +28,7 @@ function! GetYearGlyph() let year= year % 10 - return glyph . year + return decade . year endfunction " This is a rebuild of the original vim status line. I'll put the original