1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 18:10:56 +09:00
ladybird/Documentation/EditorConfiguration/VimConfiguration.md
Sam Atkins 25441e2250 Documentation: Move editor configuration guides into a subdirectory
This makes them a bit easier to find, and also stops them cluttering up
the main documentation.
2024-10-23 09:02:46 +02:00

12 lines
437 B
Markdown

# 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
configuration file that is part of the ladybird repository. You can
do this by adding the following option to your `.vimrc` file:
```vim
let g:ycm_extra_conf_globlist = ['~/ladybird/.ycm_extra_conf.py']
```