Last active
March 28, 2025 02:54
-
-
Save siduck/048bed2e7570569e6b327b35d1715404 to your computer and use it in GitHub Desktop.
Migrate from v2.0 to v2.5 ( Unix Only )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Run the script from home dir | |
cd ~ | |
nvim_config="$HOME/.config/nvim" | |
nvim_data="$HOME/.local/share/nvim" | |
cp -r "$nvim_config" nvim_bak # backup nvim dir | |
cp -r "$nvim_config/lua/custom" . | |
# Remove prefix 'custom.' from all files | |
find custom -type f -exec sed -i 's/custom\.//g' {} + | |
# replace all plugins.configs -> nvchad.configs | |
find custom -type f -exec sed -i 's/plugins.configs/nvchad.configs/g' {} + | |
cd custom | |
# we will load this in main init.lua | |
mv init.lua myinit.lua | |
# disable these fields in chadrc | |
sed -Ei 's/M.mappings|M.plugins/-- &/g' chadrc.lua | |
# add new module paths | |
[ -e options.lua ] && sed -i '1s/^/require "nvchad.options"\n/' options.lua | |
[ -e autocmds.lua ] && sed -i '1s/^/require "nvchad.autocmds"\n/' autocmds.lua | |
[ -e mappings.lua ] && sed -i '1s/^/require "nvchad.mappings"\n/' mappings.lua | |
cd .. | |
rm -rf "$nvim_config" "$nvim_data" | |
# setup new config | |
git clone https://github.com/NvChad/starter "$nvim_config" | |
if [ -e custom/configs ]; then | |
mv custom/configs/* "$nvim_config/lua/configs/" | |
rm -rf custom/configs | |
fi | |
mv custom/* "$nvim_config/lua" | |
cd "$nvim_config" | |
# load custom.init.lua if it exists | |
[ -e lua/myinit.lua ] && echo "require 'myinit'" >> init.lua | |
# Some users have plugins.lua instead of plugins dir/ so move it in the plugins dir | |
[ -e lua/plugins.lua ] && mv lua/plugins.lua lua/plugins/myplugins.lua | |
nvim |
The scripts works well . But a word of caution to folks trying this, Make sure to back Up your original configurations.
@sananand007 doesnt the script already do that 😑
my bad, yes it does @siduck .
I have all my custom plugins settings needed to be re-done after the update, so wanted to put a word of caution.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's why it's better to always document your configs. I now try doing that (didn't document anything in the past), and it will probably save me the headache of figuring out what does what and why. But I think when using Lua API in Lua, the code is more self-documented than the old Vimscript stuff.