From 5902e367aaff4dcf9b1d7873768c26529271e1af Mon Sep 17 00:00:00 2001 From: Randy Jordan Date: Sun, 3 Nov 2024 15:47:34 -0600 Subject: [PATCH] Updated vim and /eg files --- .vimrc | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.vimrc b/.vimrc index cbcec55..0d6d25a 100644 --- a/.vimrc +++ b/.vimrc @@ -146,19 +146,19 @@ tnoremap N:call ToggleTerminal() "CODE SNIPPETS/TEMPLATES ---------------------------------------------------{{{ "HTML SNIPPET/TEMPLATE" - nnoremap ,html :-1read $HOME/eg/index.html:11 + nnoremap ,html :-1read $HOME/eg/web/index.html:11 if has("autocmd") augroup templates - autocmd BufNewFile index.html 0r ~/eg/index.html + autocmd BufNewFile index.html 0r ~/eg/web/index.html autocmd BufReadPost index.html normal! 10j augroup END endif "CSS SNIPPET/TEMPLATE" - nnoremap ,css :-1read $HOME/eg/style.css + nnoremap ,css :-1read $HOME/eg/web/style.css if has("autocmd") augroup templates - autocmd BufNewFile style.css 0r ~/eg/style.css + autocmd BufNewFile style.css 0r ~/eg/web/style.css augroup END endif @@ -169,9 +169,6 @@ tnoremap N:call ToggleTerminal() autocmd BufNewFile README.md 0r ~/eg/README.md augroup END endif - - - "}}} " MINIMALIST TAB COMPLETE PLUGIN--------------------------------------------{{{