- commit
- d6cbbb1
- parent
- 918b983
- author
- Eric Bower
- date
- 2025-08-22 10:29:28 -0400 EDT
chore(git): use vimdiff
2 files changed,
+2,
-1
+1,
-0
1@@ -16,6 +16,7 @@
2 defaultBranch = main
3 [diff]
4 renames = true
5+ tool = vimdiff
6 [format]
7 useAutoBase = whenAble
8 [alias]
+1,
-1
1@@ -38,12 +38,12 @@ vim.diagnostic.config({
2 local opts = { silent = true }
3 local map = vim.keymap.set
4 map("t", "<Esc>", [[<C-\><C-n>]], opts) -- exit terminal mode
5-map("n", "<leader>t", ":bd<CR>", opts)
6 map("n", "Q", "<nop>", opts) -- disable "Q"
7 map("n", "<C-k>", ":wincmd k<CR>", opts) -- navigate splits
8 map("n", "<C-j>", ":wincmd j<CR>", opts)
9 map("n", "<C-h>", ":wincmd h<CR>", opts)
10 map("n", "<C-l>", ":wincmd l<CR>", opts)
11+map("n", "<leader>t", ":bd<CR>", opts)
12 map("n", "<leader>e", vim.diagnostic.open_float, opts)
13 map("n", "<leader>q", vim.diagnostic.setloclist, opts)
14 map({ "n", "v" }, "<leader>gy", "<cmd>GitLink<cr>", opts)