feat: updates nvim and adds gpgreset function

This commit is contained in:
2025-09-18 11:36:44 -04:00
parent e8de865417
commit 0bd1e6242d
3 changed files with 10 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
], ],
"install_version": 8, "install_version": 8,
"news": { "news": {
"NEWS.md": "10960" "NEWS.md": "11866"
}, },
"version": 8 "version": 8
} }

View File

@@ -7,5 +7,8 @@ return {
indent = { enabled = false }, indent = { enabled = false },
}, },
}, },
{
"christoomey/vim-tmux-navigator",
lazy = false,
},
} }

5
zsh/config/functions/gpgreset Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/zsh
function gpgreset() {
gpgconf --kill all && gpgconf --launch all
}