-
-
Save siduck/048bed2e7570569e6b327b35d1715404 to your computer and use it in GitHub Desktop.
#!/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 |
hi. I'm configure nvim-dap. In 2.0, it can be configured like (copied from here https://github.com/dreamsofcode-io/neovim-cpp/blob/main/plugins.lua#L33):
{
"mfussenegger/nvim-dap",
config = function(_, _)
require("core.utils").load_mappings("dap")
end
},
Migrate it into lua/plugins/xxx.lua in v2.5, it reports error:
Failed to run `config` for nvim-dap
/root/.config/nvim/lua/plugins/myplugins.lua:35: module 'core.utils' not found:
^Ino field package.preload['core.utils']
cache_loader: module core.utils not found
cache_loader_lib: module core.utils not found
^Ino file './core/utils.lua'
^Ino file '/__w/neovim/neovim/.deps/usr/share/luajit-2.1/core/utils.lua'
^Ino file '/usr/local/share/lua/5.1/core/utils.lua'
^Ino file '/usr/local/share/lua/5.1/core/utils/init.lua'
^Ino file '/__w/neovim/neovim/.deps/usr/share/lua/5.1/core/utils.lua'
^Ino file '/__w/neovim/neovim/.deps/usr/share/lua/5.1/core/utils/init.lua'
^Ino file './core/utils.so'
^Ino file '/usr/local/lib/lua/5.1/core/utils.so'
^Ino file '/__w/neovim/neovim/.deps/usr/lib/lua/5.1/core/utils.so'
^Ino file '/usr/local/lib/lua/5.1/loadall.so'
^Ino file './core.so'
^Ino file '/usr/local/lib/lua/5.1/core.so'
^Ino file '/__w/neovim/neovim/.deps/usr/lib/lua/5.1/core.so'
^Ino file '/usr/local/lib/lua/5.1/loadall.so'
# stacktrace:
- lua/plugins/myplugins.lua:35 _in_ **config**
Press ENTER or type command to continue
Failed to run `config` for nvim-dap-ui
/root/.local/share/nvim/lazy/nvim-dap-ui/lua/dapui/init.lua:36: nvim-dap-ui requires nvim-nio to be installed. Install from https://github.com/nvim-neotest/nvim-nio
How can I solve this ?
BTW, I install neovim 0.9.5 in customized path:
# ls /data/opt/nvim/
bin lib man share
@baiwfg2 the mapping part isnt automatic, so please remove the core.utils** stuff and convert your mappings to new ones
Works on macos with gsed in lieu of sed
The script will fail if there's a network error, like failed git clone
e.t.c.
EDIT: nvm, I just saw the nvim_bak
backup directory.
@fishBone000 such users must check the network first! like you're running a script that clones stuff then you should obviously have a stable connection
rm -rf "$nvim_config" "$nvim_data"
Oh well. I had my precious undofiles in $nvim_data. A warning or automatic backup would have been nice in the above script.
This is why it is always advised to read the (shellscript) code that you are downloading/running from the Internet. You can't make shell scripts 100% foolproof (or rather, you would spend a huge amount of time just to make it safe). For a simple migration helper script, I don't think this is worth doing. Making backups just in case is also a good thing to remember.
I still haven't migrated, but I did goof up a few times in the past when playing around with shell commands and scripts. I did learn on my mistakes.
But I agree that a healthy reminder about reading the code before executing it and making backups would be nice to have at the top of the script (and maybe here too).
you are right @Andrew15-5 , i didnt think users might preserve ~/.local/share/nvim, fyi @EricDuminil undo stuff is in ~/.local/state/nvim
, not share* one i think.
this page is a gist, the code is visible in front of your eyes + with comments so Ig users can read it quickly
@Andrew15-5 @siduck I totally agree it was mostly a PEBKAC error.
My nvim config is a weird mix of potentially decade old lines. let &undodir = $HOME.'/.local/share/nvim/undo2'
, among others, and I honestly cannot remember why.
and I honestly cannot remember why.
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.
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.
feel free to send an updated version of the script, i'll add it in the migration docs on nvchad.com itself