This commit is contained in:
pika 2025-05-17 11:18:28 +02:00
parent 27802ca45d
commit 76beceb1d7

View file

@ -1,5 +1,4 @@
This is my current neovim configuration. It uses [lazy.nvim](https://github.com/folke/lazy.nvim) as the packagemanager. </br> This is my current neovim configuration. It uses [lazy.nvim](https://github.com/folke/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] > [!TIP]
> pika is my username, so feel free to change this to your needs. > pika is my username, so feel free to change this to your needs.
@ -30,10 +29,20 @@ For config-installation, just git clone this repo to your $HOME/.config/ folder.
git clone --depth=1 https://git.k4li.de/dotfiles/nvim.git $HOME/.config/nvim/ git clone --depth=1 https://git.k4li.de/dotfiles/nvim.git $HOME/.config/nvim/
``` ```
> Prefetch the config with `nvim --headless +q` and enjoy the config
---
## configuration ## configuration
Colorscheme-plugins are defined in [colorschemes.lua](lua/pika/plugins/colorschemes.lua) - Colorscheme-plugins are defined in [colorschemes.lua](lua/pika/plugins/colorschemes.lua)
> [!TIP] > [!TIP]
> default theme is `duskfox` </br> > default theme is `duskfox` </br>
> you can change the theme in the colorscheme function in the [init.lua](./init.lua) > you can change the theme in the colorscheme function in the [init.lua](./init.lua)
---
- Plugin configuration and adding your own
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.