An open API service indexing awesome lists of open source software.

https://github.com/skywind3000/vim-dict

没办法,被逼的,重新整理一个词典补全的数据库
https://github.com/skywind3000/vim-dict

Last synced: over 1 year ago
JSON representation

没办法,被逼的,重新整理一个词典补全的数据库

Awesome Lists containing this project

README

          

# vim-dict

Automatically add dictionary files to current buffer according to the filetype.

## Installation

```VimL
Plug 'skywind3000/vim-dict'
```

## Add additional dict folders

```VimL
let g:vim_dict_dict = [
\ '~/.vim/dict',
\ '~/.config/nvim/dict',
\ ]
```

## File type override

```VimL
let g:vim_dict_config = {'html':'html,javascript,css', 'markdown':'text'}
```

## Disable certain types

```VimL
let g:vim_dict_config = {'text': ''}
```