vim-derivatives: improve completion

This commit is contained in:
steveej 2018-09-16 18:55:28 +02:00
parent e975628bdb
commit 7ea8c6ba8d
2 changed files with 16 additions and 4 deletions

View file

@ -4,7 +4,8 @@ set nocompatible
set mouse=
" leader
let mapleader = '\'
let mapleader = ','
let maplocalleader = ','
" save on ctrl-s
nnoremap <c-s> :w<CR>
@ -113,5 +114,11 @@ augroup ft_yaml
augroup END
" }}}
" markdown {
augroup filetypedetect
" gitit page files
au BufRead,BufNewFile *.page set filetype=markdown
augroup END
" } markdown
''