Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
| { | |
| ".123" : "application/vnd.lotus-1-2-3", | |
| ".3dml" : "text/vnd.in3d.3dml", | |
| ".3g2" : "video/3gpp2", | |
| ".3gp" : "video/3gpp", | |
| ".a" : "application/octet-stream", | |
| ".aab" : "application/x-authorware-bin", | |
| ".aac" : "audio/x-aac", | |
| ".aam" : "application/x-authorware-map", | |
| ".aas" : "application/x-authorware-seg", |
| .message-content {font-size: 120%} | |
| .message-content {color: black;} | |
| .message-content {font-family: "Segoe UI", Georgia, Serif;} | |
| .message-content {line-height: 1.5;} | |
| .user-name {font: bold 16px/30px Georgia, serif;} |
| \documentclass{exam} | |
| \usepackage{tikz} | |
| \usepackage{subfig} | |
| \usepackage{amsmath} | |
| \usepackage[margin=1.0in]{geometry} | |
| \pagestyle{empty} | |
| \title{\textbf{Mock Test OMR Sheet}} | |
| \author{Author Name} | |
| \date{} | |
| \begin{document} |
| -- Usage: type :IncrementalRename <new_name> while your cursor is placed above an identifier (LSP must be enabled) | |
| -- Update: this gist will no longer be updated since this command has been turned into a plugin! | |
| -- You can find the plugin here: https://github.com/smjonas/inc-rename.nvim | |
| local state = { | |
| added_lines = false, | |
| orig_lines = {}, | |
| lsp_positions = {}, | |
| } |
| * { all: unset; } | |
| tooltip { | |
| font-size: 2em; | |
| background-color: #7BB0DF; | |
| color: #24292E; | |
| } | |
| calendar { | |
| background: #0C0F12; |
| local present, feline = pcall(require, "feline") | |
| if not present then return end | |
| -- Customizations {{{ | |
| local theme = { | |
| aqua = "#7AB0DF", | |
| bg = "#1C212A", | |
| blue = "#5FB0FC", | |
| cyan = "#70C0BA", | |
| darkred = "#FB7373", |
| ---@diagnostic disable: need-check-nil | |
| local M = {} | |
| local A = vim.api | |
| local truncate = require("plenary.strings").truncate | |
| M._line = -1 | |
| M._structure = {} | |
| M._util_names = { | |
| g = "gap", | |
| c = "center", |