Compare commits

...

2 Commits

Author SHA1 Message Date
c63cb6ae86 Added keybinding for datestamp
Added additional keybinding to mimic datestamp entry from VS Code (<crtl><shift>-i)
2025-04-14 09:49:54 -04:00
a2c808e92d Added words to custom dictionary 2025-04-14 09:48:32 -04:00
2 changed files with 10 additions and 0 deletions

View File

@@ -59,3 +59,6 @@ Astaroth
Strongbad
CPAP
Chromebooks
Lomaira
Proxmox
MySQL

7
.vimrc
View File

@@ -278,8 +278,15 @@ nnoremap k gk
" ---------------------------------------------------------------------------------------------------------------------
" ==> Keymaps: Date and Time stamps
" Send date and time
imap <F2> <C-R>=strftime("%Y-%m-%d %H:%M:%S")<CR>
" Send date and DOW
imap <F3> <C-R>=strftime("%Y-%m-%d %a")<CR>
" alternate keybinding I use in VS Code
imap <C-S-i> <C-R>=strftime("%Y-%m-%d %a")<CR>
" Sends date
imap <F4> <C-R>=strftime("%Y-%m-%d")<CR>
" ---------------------------------------------------------------------------------------------------------------------