chore: random crap

This commit is contained in:
Mariano Z. 2025-03-28 20:25:00 -03:00
parent 684ee6d508
commit cd71c6519e
Signed by: marianozunino
GPG key ID: 4C73BAD25156DACE
4 changed files with 41 additions and 14 deletions

View file

@ -1,7 +1,7 @@
local M = {
"saghen/blink.cmp",
dependencies = { "L3MON4D3/LuaSnip", version = "v2.*" },
version = "v0.*",
version = "v1.*",
}
M.config = function()

View file

@ -1,4 +1,13 @@
local M = {
{
"tpope/vim-fugitive",
config = function()
print("Magic")
-- For init.lua
vim.g.fugitive_git_executable = "env GPG_TTY=$(tty) git"
vim.env.GPG_TTY = vim.fn.system("tty"):gsub("\n", "")
end,
},
{
"lewis6991/gitsigns.nvim",
config = function()

View file

@ -0,0 +1,16 @@
return {
"marianozunino/presenterm.nvim",
config = function()
require("presenterm").setup({
patterns = {
"*.presenterm",
"*.pterm",
"*.md",
},
auto_launch = true,
terminal_cmd = "kitty --title 'Presenterm: {title}' --override font_size=18 {cmd}",
})
end,
}