2024-08-26 19:02:08 +00:00
|
|
|
# Neovim Configuration
|
2024-08-26 18:55:52 +00:00
|
|
|
|
2024-08-26 19:02:08 +00:00
|
|
|
This configuration varies from this here standard. The actual Neovim configuration
|
2024-08-26 20:04:02 +00:00
|
|
|
can be found under a separate repository [here](https://github.com/Baipyrus/nvim-config).
|
|
|
|
These files only serve as a reference to all configurations that are to be installed
|
|
|
|
in my personal configuration.
|
2024-08-26 19:03:12 +00:00
|
|
|
|
|
|
|
## Files
|
|
|
|
|
|
|
|
- **nvim**: This file contains the URL to my personal configuration that is to be
|
|
|
|
installed as the main configuration on the machine.
|
2024-08-26 20:04:02 +00:00
|
|
|
- **nvim-modular**: This file contains the URL to the repository of [`kickstart-modular.nvim`](https://github.com/dam9000/kickstart-modular.nvim)
|
2024-08-26 19:03:12 +00:00
|
|
|
which is serving as a secondary configuration for debugging purposes.
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
To use this configuration:
|
|
|
|
|
|
|
|
1. Clone the repository.
|
|
|
|
2. Download all required configurations from files:
|
|
|
|
|
|
|
|
```pwsh
|
2024-08-26 20:04:02 +00:00
|
|
|
git clone "$(Get-Content ./nvim/nvim)" $env:LOCALAPPDATA/nvim/
|
2024-08-26 19:03:12 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
3. Copy the downloaded configuration to your system's specific location:
|
|
|
|
|
|
|
|
```pwsh
|
|
|
|
# Powershell - Windows Location
|
|
|
|
Copy-Item nvim/ $env:LOCALAPPDATA/
|
|
|
|
```
|