diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c2b1ed1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,133 @@ +# Last 25 Commits +## 9dbe4a8 (chawley (penguin), 2025-04-24) - Disable folding for yaml + + Disable fold for yaml files + + +## b052f7f (chawley (overlook), 2025-04-23) - Added line number toggle and colorscheme customization + + - n to toggle line numbers +- source ~/.vimcustom (if exists) for custom colorscheme +- disable airline theme (let it inherit from colorscheme +- + + +## fe39e86 (chawley (penguin), 2025-04-20) - added words to dictionary + + + +## aaf5d31 (chawley (overlook), 2025-04-15) - Reworked Spell Check Section + + Removed the global nospell autocommands: + The lines `autocmd BufRead,BufNewFile * setlocal nospell` and + `autocmd BufRead,BufNewFile *.* setlocal nospell` have been removed. + These were turning off spell checking for all files. + + +## d2821c7 (chawley (overlook), 2025-04-14) - .vimrc changes + + - Theme: darkburn +- ASCII foldchars +- Changed keybinding for notes to `nn` +- + + +## 750376d (phansible, 2025-04-14) - Added no line break to wrap toggle + + + +## 0793816 (chawley (tfadmin), 2025-04-14) - Updated README + + + +## 063e68f (chawley (tfadmin), 2025-04-14) - Added marks list + + Keybinding (`m`) to open mark list + + +## c63cb6a (chawley (overlook), 2025-04-14) - Added keybinding for datestamp + + Added additional keybinding to mimic datestamp entry from VS Code (-i) + + +## a2c808e (chawley (overlook), 2025-04-14) - Added words to custom dictionary + + + +## 41a036f (chawley (overlook), 2025-04-14) - Updated README + + + +## 48dd076 (chawley (overlook), 2025-04-14) - Upgraded vim-plug plugin + + via :PlugUpgrade + + +## b2bacfa (chawley (overlook), 2025-04-14) - .vimrc and rm old templates + + Removed unused templates, added word-wrap to .vimrc + + +## 6db5468 (chawley (tfadmin), 2024-10-28) - Updated vim-plug plugin + + + +## 6372ff4 (chawley, 2024-05-21) - text width = 135 + + Increased text width to 135 by default. + + +## 89fdfb9 (chawley, 2024-05-09) - Changed keybinding for FZF paste + + Press -p to paste the filename of the file selected by FZF + + +## f4f82ad (chawley, 2024-05-03) - .vimrc - removed reference to filenames in markdown frontmatter + + + +## 97f7d50 (chawley, 2024-05-03) - Markdown Frontmatter + + I removed the filename from markdown frontmatter. I've renamed file and +the filename in the frontmatter doesn't update. That's a recipe for +confusion later + + +## 244c5ed (chawley, 2024-04-24) - Added words to custom dictionary + + + +## 67569b9 (chawley, 2024-04-23) - Added link to ref for + + + +## 91e5cd5 (chawley, 2024-04-23) - Leader-f to fuzzy search word under cursor + + `-f` to open FZF window with word under cursor pre-populated + + +## 0fa0c06 (chawley, 2024-04-16) - Frontmatter for readinglist + + Reverted readinglist frontmatter to standard format with yaml delimiters +and bracketed tags + + +## d0cfda7 (chawley, 2024-04-15) - Frontmatter tag format + + Frontmatter tags should be a list (in brackets). If I'm going to do +this, I may as well do it right. + + +## 5669fb2 (chawley, 2024-04-15) - Re-added proper frontmatter to markdown template + + I'd removed the hashmarks from the markdown frontmatte tempplate so I +could use tags in SilverBullet, but decided against using SilverBullet +regularly. Not enough to break proper formatting. + + +## 2784a69 (chawley, 2024-04-10) - Removed timestamps from Markdown Files + + I removed the time from markdown `fileupdated` datestamps. I don't need +that level of reference. The date a file was updated is fine. + + diff --git a/README.md b/README.md index ef4f8cb..a7c99db 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ --- filecreated: -fileupdated: 2025-04-14 +fileupdated: 2025-04-24 filetags: [readme] --- @@ -20,22 +20,4 @@ Then open vim and install (or update) the plugins with `:PlugInstall` (or `:Plug ## Changelog -- 2025-04-14: Removed textwidth and added a word-wrap toggle (`w`). Removed old and unused templates for markdown and readinglist. Added keybinding (`m`) for marks list and (`crtl>i`) for datestamp. -- 2024-02-13: Several changes: - - Included more comments and links about what each entry does - - Removed `polyglot` plugin - - Removed `ALE` plugin - - Removed `tpope/vim-markdown` plugin - - Removed netrw customizations - - Removed auto templates, changed them to snippets: - - Insert markdown header with `,md` - - Insert shell header with `,sh` -- 2024-02-22: Replaced Vimwiki with Vim Markdown - - Suggestions from [Writing Markdown in Vim](https://codeinthehole.com/tips/writing-markdown-in-vim/) - - Added - - `godlygeek/tabular` - - `preservim/vim-markdown` -- 2024-02-25: - - Added [vim-spellsync](https://github.com/micarmst/vim-spellsync) plugin and made the needed changes to accommodate - - Reworked markdown and shell script templates to update dates in headers automatically. - - Started making better commit messages in order to avoid having to document details in README :) +Moved to CHANGELOG.md