Readme things

This commit is contained in:
pika 2024-08-19 00:26:16 +02:00
parent 844623e8cb
commit 5ee1863965
2 changed files with 9 additions and 9 deletions

View file

@ -1,15 +1,9 @@
# nvim
This is my current neovim configuration. It uses [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. </br>
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 </br>
> If you're not sure what version you have, type `nvim --version` </br>
@ -17,9 +11,15 @@ git clone --depth=1 https://git.k4li.de/dotfiles/nvim.git $HOME/.config/nvim/
```bash
bash -c "$(curl -sSL https://git.k4li.de/pika/scripts/raw/branch/main/bash/installs/neovim.sh)"
```
---
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/
```
## configuration
Colorscheme-plugins are defined in [colorschemes.lua](lua/pika/plugins/colorschemes.lua)
> default theme is [nordic](https://github.com/AlexvZyl/nordic.nvim)
> [!TIP]
> default theme is [nordic](https://github.com/AlexvZyl/nordic.nvim) </br>
> you can change the theme in the colorscheme function in the [init.lua](./init.lua)

View file

@ -11,4 +11,4 @@ local function apply_colorscheme(name)
vim.cmd.colorscheme(name)
end
apply_colorscheme("rose-pine")
apply_colorscheme("eldritch")