# vim-dict **Repository Path**: shuleiwang/vim-dict ## Basic Information - **Project Name**: vim-dict - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-07-23 - **Last Updated**: 2025-07-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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': ''} ```