nvim/README.md
2025-05-17 11:23:48 +02:00

1.5 KiB

This is my current neovim configuration. It uses lazy.nvim as the packagemanager.

Tip

pika is my username, so feel free to change this to your needs.

installation

Caution

You're neovim version has to be >=0.9.0
If you're not sure what version you have, type nvim --version
To build neovim from source, you can run the following. This script should cover most linux distros

curl -fsSL https://git.k4li.de/scripts/installs/raw/branch/main/neovim.sh | bash

Tip

You can run the script silently, via..

curl -fsSL https://... | bash -s -- [ --silent | -s ]

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/

Prefetch the config with nvim --headless +q and enjoy the config


configuration

Tip

default theme is duskfox
you can change the theme in the colorscheme function in the 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.