From 271aa3182bd3ebc290b113c619a32f944ab512ec Mon Sep 17 00:00:00 2001 From: "chawley (overlook)" Date: Wed, 28 May 2025 12:31:33 -0400 Subject: [PATCH] Removed autowrite section I suspect it created a ton of sync-conflicts in my notes. Auto saving isn't worth it if that's the result. --- .vimrc | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.vimrc b/.vimrc index 806362f..5417ff6 100644 --- a/.vimrc +++ b/.vimrc @@ -363,18 +363,6 @@ hi SpellBad cterm=underline ctermbg=none hi SpellLocal cterm=underline ctermbg=none hi SpellRare cterm=underline ctermbg=none -" --------------------------------------------------------------------------------------------------------------------- -" ==> Markdown autoread, autowrite -" Autocommands for Markdown files -augroup markdown_settings - " Remove any existing autocommands in this group - autocmd! - " Set autoread and autowriteall for markdown files - autocmd BufReadPost,BufNewFile *.md setlocal autoread autowriteall - " Optional: Trigger checktime more frequently when idle in markdown buffers - autocmd CursorHold,CursorHoldI *.md checktime -augroup END - " --------------------------------------------------------------------------------------------------------------------- " ==> Templates: markdown documents with frontmatter (.md)