https://github.com/srtigers98/nvim-config
Personal NeoVim configuration
https://github.com/srtigers98/nvim-config
lua nvim
Last synced: about 2 months ago
JSON representation
Personal NeoVim configuration
- Host: GitHub
- URL: https://github.com/srtigers98/nvim-config
- Owner: SRTigers98
- License: mit
- Created: 2023-09-11T11:05:09.000Z (almost 3 years ago)
- Default Branch: scratch
- Last Pushed: 2026-02-19T09:05:13.000Z (4 months ago)
- Last Synced: 2026-02-19T14:12:54.239Z (4 months ago)
- Topics: lua, nvim
- Language: Lua
- Homepage: https://neovim.io/
- Size: 181 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NeoVim Configuration

My personal NeoVim configuration.
This configuration is based on this [blog post](https://www.josean.com/posts/how-to-setup-neovim-2024)
by [Josean Martinez](https://github.com/josean-dev).
Also some configurations and plugins are inspired by [NvChad](https://nvchad.com/)
which I used previously.
## Requirements
- **Neovim 0.12+**
- **[tree-sitter-cli](https://github.com/tree-sitter/tree-sitter/blob/master/crates/cli/README.md)** (≥ 0.26.1) — required by the treesitter plugin to compile language parsers from source.
Install via pacman (Arch Linux):
```bash
pacman -S tree-sitter-cli
```
Install via Homebrew (macOS):
```bash
brew install tree-sitter-cli
```
## Installation
Install the configuration by using one of the following commands:
- Via HTTPS
```bash
git clone https://github.com/SRTigers98/nvim-config ~/.config/nvim --depth 1
```
- Via SSH
```bash
git clone git@github.com:SRTigers98/nvim-config.git ~/.config/nvim --depth 1
```
Then you can open up NeoVim and all plugins and packages should be installed automatically.
This could take a while!
## Update
To update the configuration just use the **git pull** command to update the repository.