Merge new modular config

This commit is contained in:
smashblu 2024-09-22 19:16:16 -07:00
parent 270d774c6f
commit efd0b9e719
9 changed files with 99 additions and 835 deletions

View file

@ -68,16 +68,12 @@ too - it's ignored in the kickstart repo to make maintenance easier, but it's
#### Clone kickstart.nvim
> **NOTE**
> If following the recommended step above (i.e., forking the repo), replace
> `dam9000` with `<your_github_username>` in the commands below
> `smashblu` with `<your_github_username>` in the commands below
<details><summary> Linux and Mac </summary>
```sh
<<<<<<< HEAD
git clone https://github.com/smashblu/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
=======
git clone https://github.com/dam9000/kickstart-modular.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
>>>>>>> modular/master
```
</details>
@ -87,21 +83,13 @@ git clone https://github.com/dam9000/kickstart-modular.nvim.git "${XDG_CONFIG_HO
If you're using `cmd.exe`:
```
<<<<<<< HEAD
git clone https://github.com/smashblu/kickstart.nvim.git %userprofile%\AppData\Local\nvim\
=======
git clone https://github.com/dam9000/kickstart.nvim.git "%localappdata%\nvim"
>>>>>>> modular/master
git clone https://github.com/smashblu/kickstart.nvim.git "%localappdata%\nvim"
```
If you're using `powershell.exe`
```
<<<<<<< HEAD
git clone https://github.com/smashblu/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\
=======
git clone https://github.com/dam9000/kickstart.nvim.git "${env:LOCALAPPDATA}\nvim"
>>>>>>> modular/master
git clone https://github.com/smashblu/kickstart.nvim.git "${env:LOCALAPPDATA}\nvim"
```
</details>
@ -151,7 +139,7 @@ examples of adding popularly requested plugins.
As you progress in learning Neovim and Lua, you might consider splitting `init.lua`
into smaller parts. A fork of kickstart that does this while maintaining the
same functionality is available here:
* [kickstart-modular.nvim](https://github.com/dam9000/kickstart-modular.nvim)
* [kickstart-modular.nvim](https://github.com/smashblu/kickstart.nvim)
* *NOTE: This is the fork that splits the configuration into smaller parts.*
The original repo with the single `init.lua` file is available here:
* [kickstart.nvim](https://github.com/nvim-lua/kickstart.nvim)