caio.co/de/dotfiles


Fix submodules after merging with nvim config repo 💬 by Caio 9 months ago (log)
I've imported my nvim config repo into this one via:

    cd config.nvim.git
    git format-patch --root $first-commit HEAD -o /tmp/
    cd ../dotfiles.git
    git am --directory config/nvim /tmp/*.patch

The only thing that was left broken (unsurprisingly) were the
submodules paths

This patch fixes the .gitmodules location and content
so now I'm back to a single git repo to manage local config \o/

Blob .gitmodules

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[submodule "config/nvim/pack/ext/start/vim-renamer"]
	path = config/nvim/pack/ext/start/vim-renamer
	url = https://github.com/qpkorr/vim-renamer
[submodule "config/nvim/pack/ext/start/vim-surround"]
	path = config/nvim/pack/ext/start/vim-surround
	url = https://github.com/tpope/vim-surround
[submodule "config/nvim/pack/ext/start/vim-commentary"]
	path = config/nvim/pack/ext/start/vim-commentary
	url = https://github.com/tpope/vim-commentary
[submodule "config/nvim/pack/ext/start/vim-repeat"]
	path = config/nvim/pack/ext/start/vim-repeat
	url = https://github.com/tpope/vim-repeat
[submodule "config/nvim/pack/ext/start/vim-fugitive"]
	path = config/nvim/pack/ext/start/vim-fugitive
	url = https://github.com/tpope/vim-fugitive
[submodule "config/nvim/pack/ext/start/nvim-autopairs"]
	path = config/nvim/pack/ext/start/nvim-autopairs
	url = https://github.com/windwp/nvim-autopairs
[submodule "config/nvim/pack/ext/start/plenary.nvim"]
	path = config/nvim/pack/ext/start/plenary.nvim
	url = https://github.com/nvim-lua/plenary.nvim
[submodule "config/nvim/pack/ext/start/telescope.nvim"]
	path = config/nvim/pack/ext/start/telescope.nvim
	url = https://github.com/nvim-telescope/telescope.nvim
	branch = 0.1.x