๐Ÿ“ฆ da-x / rvim

My NeoVIM configuration second generation

โ˜… 0 stars โ‘‚ 0 forks ๐Ÿ‘ 0 watching โš–๏ธ MIT License
๐Ÿ“ฅ Clone https://github.com/da-x/rvim.git
HTTPS git clone https://github.com/da-x/rvim.git
SSH git clone git@github.com:da-x/rvim.git
CLI gh repo clone da-x/rvim
Dan Aloni Dan Aloni Updates ce58e4b 2 months ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ .github
๐Ÿ“ bin
๐Ÿ“ doc
๐Ÿ“ lua
๐Ÿ“ plugin
๐Ÿ“ rplugin
๐Ÿ“ UltiSnips
๐Ÿ“„ .editorconfig
๐Ÿ“„ .gitignore
๐Ÿ“„ .stylua.toml
๐Ÿ“„ gitutils.vim
๐Ÿ“„ init.lua
๐Ÿ“„ lazy-lock.json
๐Ÿ“„ LICENSE.md
๐Ÿ“„ ORIG_README.md
๐Ÿ“„ README.md
๐Ÿ“„ vimscript.vim
๐Ÿ“„ README.md

rvim

My highly customized Neovim configuration, built on top of Kickstart.nvim.

About

This is "rvim" (named for lack of a better term) - a personalized Neovim setup that extends Kickstart.nvim with extensive customizations for my development workflow.

Key additions include a lockfile for configuration stability and numerous enhancements tailored to my specific needs.

Installation

  • Clone this repository to a separate config directory:
git clone <repo-url> ~/.config/rvim

  • Create a handy script to run rvim alongside regular nvim:
cat > ~/.local/bin/rvim << 'EOF'
   #!/bin/bash
   NVIM_APPNAME=rvim nvim "$@"
   EOF
   chmod +x ~/.local/bin/rvim

  • Start rvim - plugins will auto-install on first run:
rvim

This allows you to use both nvim (your regular config) and rvim (this config) during migration.

Original

Based on Kickstart.nvim - see ORIGREADME.md for original documentation.