This commit is contained in:
grimhilt
2025-04-20 14:07:40 +02:00
parent 41130c69bc
commit 88bd1246e3
4 changed files with 82 additions and 13 deletions

View File

@@ -20,6 +20,25 @@ return {
-- Git
"tpope/vim-fugitive",
"tpope/vim-rhubarb",
"linrongbin16/gitlinker.nvim",
cmd = "GitLink",
opts = {},
keys = {
{ "<leader>gy", "<cmd>GitLink<cr>", mode = { "n", "v" }, desc = "Yank git link" },
{ "<leader>gY", "<cmd>GitLink!<cr>", mode = { "n", "v" }, desc = "Open git link" },
},
-- Vim
{
"lervag/vimtex",
lazy = false, -- we don't want to lazy load VimTeX
-- tag = "v2.15", -- uncomment to pin to a specific release
init = function()
-- VimTeX configuration goes here, e.g.
vim.g.vimtex_view_method = "zathura"
end
},
"tpope/vim-commentary",
"tpope/vim-surround",