Skip to content

Commit 4b08fba

Browse files
committed
batch of adjustments: vim to vim-plug, zed, git
1 parent 5710bf6 commit 4b08fba

21 files changed

+2874
-114
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ config/zed/embeddings
1010
config/zed/themes
1111
config/zed/.tmp*
1212
vim/undo/
13+
vim/plugged/

.gitmodules

-42
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,6 @@
11
[submodule "dotbot"]
22
path = dotbot
33
url = https://github.com/anishathalye/dotbot
4-
[submodule "vim/bundle/Vundle.vim"]
5-
path = vim/bundle/Vundle.vim
6-
url = https://github.com/VundleVim/Vundle.vim.git
7-
[submodule "vim/bundle/nerdtree"]
8-
path = vim/bundle/nerdtree
9-
url = https://github.com/scrooloose/nerdtree.git
10-
[submodule "vim/bundle/sparkup"]
11-
path = vim/bundle/sparkup
12-
url = https://github.com/rstacruz/sparkup.git
13-
[submodule "vim/bundle/vim-fugitive"]
14-
path = vim/bundle/vim-fugitive
15-
url = https://github.com/tpope/vim-fugitive.git
16-
[submodule "vim/bundle/vimwiki"]
17-
path = vim/bundle/vimwiki
18-
url = https://github.com/vimwiki/vimwiki.git
19-
[submodule "vim/bundle/fzf.vim"]
20-
path = vim/bundle/fzf.vim
21-
url = https://github.com/junegunn/fzf.vim.git
224
[submodule "tmux/plugins/tpm"]
235
path = tmux/plugins/tpm
246
url = https://github.com/tmux-plugins/tpm
@@ -34,33 +16,9 @@
3416
[submodule "tmux/plugins/tmux-prefix-highlight"]
3517
path = tmux/plugins/tmux-prefix-highlight
3618
url = https://github.com/tmux-plugins/tmux-prefix-highlight.git
37-
[submodule "vim/bundle/vimtex"]
38-
path = vim/bundle/vimtex
39-
url = https://github.com/lervag/vimtex.git
4019
[submodule "z"]
4120
path = z
4221
url = https://github.com/rupa/z.git
43-
[submodule "vim/bundle/fzf"]
44-
path = vim/bundle/fzf
45-
url = https://github.com/junegunn/fzf.git
46-
[submodule "vim/bundle/vim-surround"]
47-
path = vim/bundle/vim-surround
48-
url = https://github.com/tpope/vim-surround.git
49-
[submodule "vim/bundle/vim-repeat"]
50-
path = vim/bundle/vim-repeat
51-
url = https://github.com/tpope/vim-repeat.git
52-
[submodule "vim/bundle/indentLine"]
53-
path = vim/bundle/indentLine
54-
url = https://github.com/Yggdroot/indentLine
55-
[submodule "vim/bundle/vim-pythonsense"]
56-
path = vim/bundle/vim-pythonsense
57-
url = https://github.com/jeetsukumaran/vim-pythonsense.git
58-
[submodule "vim/bundle/nerdcommenter"]
59-
path = vim/bundle/nerdcommenter
60-
url = https://github.com/preservim/nerdcommenter.git
61-
[submodule "vim/bundle/vim-easymotion"]
62-
path = vim/bundle/vim-easymotion
63-
url = https://github.com/easymotion/vim-easymotion.git
6422
[submodule "local/share/nvim/plugged/plenary.nvim"]
6523
path = local/share/nvim/plugged/plenary.nvim
6624
url = https://github.com/nvim-lua/plenary.nvim.git

config/zed/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"features": {
1111
"copilot": false
1212
},
13+
"format_on_save": "off",
1314
"base_keymap": "JetBrains",
1415
"theme": "Andromeda",
1516
"vim_mode": true,

gitconfig

+7
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,10 @@
5151
defaultRemote = origin
5252
[commit]
5353
verbose = true
54+
[core]
55+
packedGitLimit = 512m
56+
packedGitWindowSize = 512m
57+
[pack]
58+
deltaCacheSize = 2047m
59+
packSizeLimit = 2047m
60+
windowMemory = 2047m

gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44

55
.idea/
66
.rgignore
7+
scratch/

0 commit comments

Comments
 (0)