This is a fork of dam9000/kickstart-modular.nvim and nvim-lua/kickstart.nvim to preserve my personal Neovim configuration.
NOTE Backup your previous configuration (if any exists)
Requirements:
- Make sure to review the readmes of the plugins if you are experiencing errors. In particular:
- See Windows Installation if you have trouble with
telescope-fzf-native
Neovim's configurations are located under the following paths, depending on your OS:
| OS | PATH |
|---|---|
| Linux | $XDG_CONFIG_HOME/nvim, ~/.config/nvim |
| MacOS | $XDG_CONFIG_HOME/nvim, ~/.config/nvim |
| Windows (cmd) | %userprofile%\AppData\Local\nvim\ |
| Windows (powershell) | $env:USERPROFILE\AppData\Local\nvim\ |
Clone kickstart.nvim:
- on Linux and Mac
git clone https://github.com/guidovicino/kickstart-modular.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim- on Windows (cmd)
git clone https://github.com/guidovicino/kickstart-modular.nvim.git %userprofile%\AppData\Local\nvim\
- on Windows (powershell)
git clone https://github.com/guidovicino/kickstart-modular.nvim.git $env:USERPROFILE\AppData\Local\nvim\
Start Neovim
nvimThe Lazy plugin manager will start automatically on the first run and install the configured plugins - as can be seen in the introduction video. After the installation is complete you can press q to close the Lazy UI and you are ready to go! Next time you run nvim Lazy will no longer show up.
If you would prefer to hide this step and run the plugin sync from the command line, you can use:
nvim --headless "+Lazy! sync" +qaInstallation may require installing build tools, and updating the run command for telescope-fzf-native
See telescope-fzf-native documentation for more details
This requires:
- Install CMake, and the Microsoft C++ Build Tools on Windows
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }