summaryrefslogtreecommitdiff
path: root/config/grammarous.vim
blob: 89399f602a31de4b3b30a12148bab793dc9710e3 (plain)
1
2
3
4
5
6
7
8
9
10
" Search only in comment section for certain filestypes
let g:grammarous#default_comments_only_filetypes = {
            \ '*' : 1, 'help' : 0, 'markdown' : 0, 'tex' : 0
            \ }

" Disable some troublesome error types
let g:grammarous#disabled_rules = {
            \ '*' : ['WHITESPACE_RULE', 'EN_QUOTES'],
            \ 'help' : ['WHITESPACE_RULE', 'EN_QUOTES', 'SENTENCE_WHITESPACE', 'UPPERCASE_SENTENCE_START'],
            \ }