Fixed path for templates

This commit is contained in:
2026-07-12 18:45:08 -05:00
parent a4ae74ab16
commit 466df6121d
+2 -2
View File
@@ -198,7 +198,7 @@ map <leader>v "+p
nnoremap ,html :-1read $HOME/eg/webdev/index.html<CR>:11<CR> nnoremap ,html :-1read $HOME/eg/webdev/index.html<CR>:11<CR>
if has("autocmd") if has("autocmd")
augroup templates 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 autocmd BufReadPost index.html normal! 10j
augroup END augroup END
endif endif
@@ -207,7 +207,7 @@ endif
nnoremap ,css :-1read $HOME/eg/webdev/style.css<CR> nnoremap ,css :-1read $HOME/eg/webdev/style.css<CR>
if has("autocmd") if has("autocmd")
augroup templates augroup templates
autocmd BufNewFile style.css 0r ~/eg/webdev/style.css autocmd BufNewFile style.css 0r ~/eg/web_dev/style.css
augroup END augroup END
endif endif