Vim can be configured as a powerful C/C++ IDE with a single command. The plugin YouCompleteMe is also installed automatically, and the latest version of libclang is downloaded from the official website. Ycm_core Library is then compiled for YouCompleteMe, as well as some handy shortcuts.
Address: github.com/HmyBmny/vim…
Support for all Linux platforms, Mac has not tried, if you want to develop Python, Go or other languages, just find the corresponding Vim plug-in and add the repository name to the.vimrc file.
To develop Python, simply add the following code to the.vimrc file
`klen/python-mode`
Copy the code
The configuration is complete after the vim :PlugInstall +qall plug-in is installed on the terminal.
To develop Go, simply add the following code to the.vimrc file
`fatih/vim-go`
Copy the code
The configuration is complete after the vim :PlugInstall +qall plug-in is installed on the terminal.
Plug 'klen/python-mode'
Plug 'fatih/vim-go'Copy the code