blob: ef23119871b50ae74d86ad6dd5aa334dfbf20495 (
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,
\ }
" Disable some troublesome error types
let g:grammarous#disabled_rules = {
\ '*' : ['WHITESPACE_RULE', 'EN_QUOTES'],
\ 'help' : ['WHITESPACE_RULE', 'EN_QUOTES', 'SENTENCE_WHITESPACE', 'UPPERCASE_SENTENCE_START'],
\ }
|