Initial commit: Add dotfiles and custom zsh theme

This commit is contained in:
Aaron D. Lee
2025-12-13 23:18:59 -05:00
commit bcdc53a6e6
14 changed files with 1883 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
A simple package to bring basic emojis to espanso.
It works by replacing keywords like `:lol` with `😂`. More details below.
### Installation
Install the package with:
```
espanso install basic-emojis
```
### Usage
This package replaces the following keywords with the associated emoji while you're
typing:
Keyword | Emoji
--- | ---
`:lol` | 😂
`:llol` | 😂😂😂😂
`:sad` | ☹
`:ssad` | ☹☹☹☹
`:sml` | 😊
`:strong` | 💪
`:stlol` | 💪😂
`:ba` | 😎
`:ok` | 👍
`:ook` | 👍👍👍👍
`:happy` | 😄
`:cry` | 😭
`:wow` | 😮

View File

@@ -0,0 +1,6 @@
author: Federico Terzi
description: A package to include some basic emojis in espanso.
name: basic-emojis
title: Basic Emojis
version: 0.1.0
tags: ["emoji", "chat"]

View File

@@ -0,0 +1,2 @@
---
hub

View File

@@ -0,0 +1,27 @@
matches:
- trigger: ":lol"
replace: "😂"
- trigger: ":llol"
replace: "😂😂😂😂"
- trigger: ":sad"
replace: "☹"
- trigger: ":ssad"
replace: "☹☹☹☹"
- trigger: ":sml"
replace: "😊"
- trigger: ":strong"
replace: "💪"
- trigger: ":stlol"
replace: "💪😂"
- trigger: ":ba"
replace: "😎"
- trigger: ":ok"
replace: "👍"
- trigger: ":ook"
replace: "👍👍👍👍"
- trigger: ":happy"
replace: "😄"
- trigger: ":cry"
replace: "😭"
- trigger: ":wow"
replace: "😮"