Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elite-sheep/vim_settings
My vim settings
https://github.com/elite-sheep/vim_settings
Last synced: 4 days ago
JSON representation
My vim settings
- Host: GitHub
- URL: https://github.com/elite-sheep/vim_settings
- Owner: elite-sheep
- Created: 2018-07-14T03:03:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-31T08:50:08.000Z (about 4 years ago)
- Last Synced: 2024-11-30T01:26:29.979Z (2 months ago)
- Language: Vim script
- Size: 3.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Vim-Settings
This is a vim setting for Yuchen Wang, a dev in Microsoft MMX team.
### Build
To build this vim setting is very simple:
First, clone it into your local computer:
```
git clone https://github.com/Aaron19960821/vim_settings ~/.vim
```We use vim-plug to manage all plugins we install, please update the plugins
with the following command:
```
:PlugInstall
```Currently we use **cquery** for code completion. To install cquery, please follow this way:
```
git clone --recursive https://github.com/cquery-project/cquery.git
cd cquery
git submodule update --init
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=release -DCMAKE_EXPORT_COMPILE_COMMANDS=YES
cmake --build .
cmake --build . --target install
```