wip
This commit is contained in:
parent
9bb5cee85a
commit
27802ca45d
1 changed files with 11 additions and 4 deletions
15
README.md
15
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. </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.
|
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.
|
||||||
|
@ -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.
|
> To install neovim 0.9.0 or higher, you can run the following.
|
||||||
>
|
>
|
||||||
> ```bash
|
> ```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
|
```bash
|
||||||
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/
|
||||||
|
@ -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)
|
Colorscheme-plugins are defined in [colorschemes.lua](lua/pika/plugins/colorschemes.lua)
|
||||||
|
|
||||||
> [!TIP]
|
> [!TIP]
|
||||||
> default theme is `monet` </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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue