https://github.com/jabbalaci/nvim.jabba
My neovim config
https://github.com/jabbalaci/nvim.jabba
config kickstart lua neovim nvim
Last synced: 2 months ago
JSON representation
My neovim config
- Host: GitHub
- URL: https://github.com/jabbalaci/nvim.jabba
- Owner: jabbalaci
- License: mit
- Created: 2025-08-04T09:40:16.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-09-27T07:23:28.000Z (4 months ago)
- Last Synced: 2025-09-27T09:26:50.300Z (4 months ago)
- Topics: config, kickstart, lua, neovim, nvim
- Language: Vim Snippet
- Homepage:
- Size: 132 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Jabba's nvim config
This repo contains my Neovim configuration.
I took the [Kickstart project](https://github.com/nvim-lua/kickstart.nvim)
and customized it to my needs.
## Installation
```shell
$ cd ~/.config
$ mkdir nvim.jabba
$ cd nvim.jabba
$ git clone https://github.com/jabbalaci/nvim.jabba .
```
Then, if you use fish shell, you can add these lines to your fish config:
```fish
set -gx NVIM_APPNAME nvim.jabba
set -gx EDITOR nvim
set -gx VIEWER $EDITOR
set -gx VISUAL $EDITOR
set -gx GIT_EDITOR $EDITOR
alias vim nvim
abbr nv "nvim -u NORC" # vanilla version (no config file, no plugins)
```