2022-10-25 16:38:30 -03:00
|
|
|
# Vim Project Configuration
|
|
|
|
|
|
|
|
|
|
Vim can be configured to use the [YouCompleteMe](https://github.com/ycm-core/YouCompleteMe)
|
|
|
|
|
plugin to provide code-completion.
|
|
|
|
|
|
|
|
|
|
Once you've installed the YouCompleteMe plugin you should whitelist the
|
2024-05-31 20:27:20 -03:00
|
|
|
configuration file that is part of the ladybird repository. You can
|
2022-10-25 16:38:30 -03:00
|
|
|
do this by adding the following option to your `.vimrc` file:
|
|
|
|
|
|
|
|
|
|
```vim
|
2024-05-31 20:27:20 -03:00
|
|
|
let g:ycm_extra_conf_globlist = ['~/ladybird/.ycm_extra_conf.py']
|
2022-10-25 16:38:30 -03:00
|
|
|
```
|