diff --git a/README.md b/README.md index 5e77df0..bcc8c4f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ 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 .lua file in the lua/pika/plugin/ path, inside a require{} table. +My config is relatively simple structured. If you want to add a plugin, just create a .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. @@ -12,12 +12,19 @@ My config is relatively simple structured. If you want to add a plugin, just cre > 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)" +> curl -fsSL https://git.k4li.de/scripts/installs/raw/branch/main/neovim.sh | bash +> ``` + +> [!TIP] +> You can run the script silently, via.. +> +> ```bash +> curl -fsSL https://... | bash -s -- [ --silent | -s ] > ``` --- -For installation, just git clone this repo to your $HOME/.config/ folder. +For config-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/ @@ -28,5 +35,5 @@ git clone --depth=1 https://git.k4li.de/dotfiles/nvim.git $HOME/.config/nvim/ Colorscheme-plugins are defined in [colorschemes.lua](lua/pika/plugins/colorschemes.lua) > [!TIP] -> default theme is `monet`
+> default theme is `duskfox`
> you can change the theme in the colorscheme function in the [init.lua](./init.lua)