diff options
| author | kazenix <jdjr.bailey@gmail.com> | 2022-12-22 04:45:20 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-22 07:45:20 -0500 |
| commit | 5e45cfce6aec14d96b1ddb48cc22066d5b790db9 (patch) | |
| tree | 59a851944b12e12a03595140dc1a8fbc7820596f | |
| parent | cd945b9cf50fdf7ae7cd61d6de7836c8ed2676c9 (diff) | |
| download | dots-5e45cfce6aec14d96b1ddb48cc22066d5b790db9.tar.gz | |
Adding cmake documentation to README.md (#85)
| -rw-r--r-- | nvim/README.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nvim/README.md b/nvim/README.md index b424085..e29f426 100644 --- a/nvim/README.md +++ b/nvim/README.md @@ -21,6 +21,20 @@ This repo is meant to be used as a starting point for a user's own configuration If there are languages that you don't want to use, remove their configuration and notes from your `init.lua` after copy and pasting (for example, in the mason configuration). +### Windows Installation + +Installation may require installing build tools, and updating the run command for `telescope-fzf-native` + +See `telescope-fzf-native` documention for [more details](https://github.com/nvim-telescope/telescope-fzf-native.nvim#installation) + +This requires: + +- Install CMake, and the Microsoft C++ Build Tools on Windows + +```lua +use {'nvim-telescope/telescope-fzf-native.nvim', run = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' } +``` + ### Configuration You could directly modify the `init.lua` file with your personal customizations. This option is the most straightforward, but if you update your config from this repo, you may need to reapply your changes. |