readme things
This commit is contained in:
parent
57fea97556
commit
106ff63106
1 changed files with 23 additions and 0 deletions
23
README.md
23
README.md
|
@ -1,2 +1,25 @@
|
|||
# nvim
|
||||
|
||||
This is my current neovim configuration. It uses [lazy.nvim]() as the packagemanager.
|
||||
My config is relatively simple structured. If you want to add a plugin, just create a <plugin.name>.lua file in the lua/pika/plugin/ path, inside a require{} table.
|
||||
> [!TIP]
|
||||
> pika is my username, so feel free to change this to your needs.
|
||||
|
||||
## installation
|
||||
For installation, just git clone this repo to your $HOME/.config/ folder.
|
||||
```bash
|
||||
git clone --depth=1 https://git.k4li.de/dotfiles/nvim.git $HOME/.config/nvim/
|
||||
```
|
||||
> [!CAUTION]
|
||||
> You're neovim version has to be >=0.9.0
|
||||
> If you're not sure what version you have, type `nvim --version`
|
||||
> To install neovim 0.9.0 or higher, you can run the following.
|
||||
```bash
|
||||
bash -c "$(curl -sSL https://git.k4li.de/pika/scripts/raw/branch/main/bash/installs/neovim.sh)"
|
||||
```
|
||||
|
||||
## configuration
|
||||
|
||||
Colorscheme-plugins are defined in [colorschemes.lua](lua/pika/plugins/colorschemes.lua)
|
||||
> default theme is [nordic](https://github.com/AlexvZyl/nordic.nvim)
|
||||
> you can change the theme in the colorscheme function in the [init.lua](./init.lua)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue