From 466df6121de86b063832df00d9620a273f2df3f3 Mon Sep 17 00:00:00 2001 From: Randy Jordan Date: Sun, 12 Jul 2026 18:45:08 -0500 Subject: [PATCH] Fixed path for templates --- .vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 2cdbfa8..0c3fa68 100644 --- a/.vimrc +++ b/.vimrc @@ -198,7 +198,7 @@ map v "+p nnoremap ,html :-1read $HOME/eg/webdev/index.html:11 if has("autocmd") augroup templates - autocmd BufNewFile index.html 0r ~/eg/webdev/index.html + autocmd BufNewFile index.html 0r ~/eg/web_dev/index.html autocmd BufReadPost index.html normal! 10j augroup END endif @@ -207,7 +207,7 @@ endif nnoremap ,css :-1read $HOME/eg/webdev/style.css if has("autocmd") augroup templates - autocmd BufNewFile style.css 0r ~/eg/webdev/style.css + autocmd BufNewFile style.css 0r ~/eg/web_dev/style.css augroup END endif