aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/html.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-30 15:03:46 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-30 15:03:46 +1300
commit9858af6f41ff7d9f295384c45ef21d2f3892fbd3 (patch)
tree7ef47f447c49526d1a0885885b9d740250df2907 /vim/ftplugin/html.vim
parentAdd some more file-specific indent preferences (diff)
downloaddotfiles-9858af6f41ff7d9f295384c45ef21d2f3892fbd3.tar.gz
dotfiles-9858af6f41ff7d9f295384c45ef21d2f3892fbd3.zip
Move filetype-specific indent options into indent/
I'm still getting used to the structure of the configuration here, and had mistakenly put these indent-related settings into files in the ftplugin directory.
Diffstat (limited to 'vim/ftplugin/html.vim')
-rw-r--r--vim/ftplugin/html.vim18
1 files changed, 0 insertions, 18 deletions
diff --git a/vim/ftplugin/html.vim b/vim/ftplugin/html.vim
deleted file mode 100644
index 654aa407..00000000
--- a/vim/ftplugin/html.vim
+++ /dev/null
@@ -1,18 +0,0 @@
-" Explicitly set indent level; this matches the global default, but it's tidy
-" to enforce it in case we changed from a filetype with different value (e.g.
-" VimL)
-setlocal shiftwidth=4
-setlocal softtabstop=4
-setlocal tabstop=4
-
-" Run tidy -eq -utf8 on file for the current buffer
-nnoremap <leader>v :exe "!tidy -eq -utf8 " . shellescape(expand("%"))<CR>
-
-" Make a bare URL into a link to itself
-function! UrlLink()
- normal yiW
- execute "normal i<a href=\"\<C-R>0\">\<Esc>"
- normal E
- execute "normal a</a>\<Esc>"
-endfunction
-nnoremap <silent> <leader>r :<C-U>call UrlLink()<CR>