Skip to content

Instantly share code, notes, and snippets.

View tmerse's full-sized avatar

Tobias Mersmann tmerse

View GitHub Profile
@tmerse
tmerse / mini_pairs.lua
Last active March 6, 2025 13:40
mini.pairs updates
{
"echasnovski/mini.pairs",
enabled = true,
event = { "VeryLazy" },
version = "*",
opts = {
-- In which modes mappings from this `config` should be created
modes = { insert = true, command = false, terminal = false },
-- Global mappings. Each right hand side should be a pair information, a
@tmerse
tmerse / _dasht
Created April 25, 2016 13:51
zsh autocompletion for dasht
#compdef dasht
_main() {
local commands
commands=(`dasht-docsets 2>/dev/null`)
if (( CURRENT >= 3 )); then
_describe -t commands 'commands' commands
fi