mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 10:33:49 -03:00
chore: random crap
This commit is contained in:
parent
684ee6d508
commit
cd71c6519e
4 changed files with 41 additions and 14 deletions
|
@ -1,7 +1,7 @@
|
|||
local M = {
|
||||
"saghen/blink.cmp",
|
||||
dependencies = { "L3MON4D3/LuaSnip", version = "v2.*" },
|
||||
version = "v0.*",
|
||||
version = "v1.*",
|
||||
}
|
||||
|
||||
M.config = function()
|
||||
|
|
|
@ -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()
|
||||
|
|
16
lua/plugins/presenterm.lua
Normal file
16
lua/plugins/presenterm.lua
Normal 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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue