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--------------------------------------------{{{