mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-19 03:25:33 +00:00
27 lines
1.2 KiB
VimL
27 lines
1.2 KiB
VimL
" define a group `init` and initialize.
|
|
augroup init
|
|
autocmd!
|
|
|
|
" Remember last location/cursor in file
|
|
autocmd BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$") | exe "normal g'\"" | endif
|
|
|
|
" spell correction on text-files
|
|
autocmd BufNewFile,BufRead *.md setlocal spell
|
|
autocmd BufNewFile,BufRead *.md setlocal wrap
|
|
autocmd BufNewFile,BufRead *.md setlocal spelllang=en,de
|
|
|
|
" add the dash to keywords -- makes better css/js/html search
|
|
" do this for specific files only (not in php/rb e.g.) where dashes are
|
|
" not used in variable names (use camelCase instead here)
|
|
autocmd BufNewFile,BufRead *.{js,css,scss,html} set iskeyword+=-
|
|
autocmd BufNewFile,BufRead *.{js,css,scss,html} set iskeyword-=_
|
|
autocmd BufNewFile,BufRead *.php set iskeyword-=-
|
|
|
|
" omnicompletion for some filetypes
|
|
autocmd FileType css,scss setlocal omnifunc=csscomplete#CompleteCSS
|
|
autocmd FileType html,php,twig setlocal omnifunc=htmlcomplete#CompleteTags
|
|
autocmd FileType php setlocal omnifunc=phpcomplete#CompletePHP
|
|
autocmd FileType javascript setlocal omnifunc=javascriptcomplete#CompleteJS
|
|
autocmd FileType xml setlocal omnifunc=xmlcomplete#CompleteTags
|
|
augroup END
|