You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
my-nvim-lua/after/plugin/vim-lexical.vim

12 lines
459 B
VimL

augroup lexical
autocmd!
autocmd FileType markdown,mkd,toml,mail call lexical#init()
autocmd FileType textile call lexical#init()
autocmd FileType text call lexical#init({ 'spell': 0 })
augroup END
let g:lexical#thesaurus_key = '<leader>ts'
let g:lexical#dictionary_key = '<leader>kk'
let g:lexical#thesaurus = ['~/.local/share/mthesaur.txt',]
let g:lexical#dictionary = ['/usr/share/dict/words', '/usr/share/dict/spanish', '/usr/share/dict/french']