├── .gitignore ├── LICENSE.md ├── README.md ├── combining-characters ├── LICENSE ├── README.md ├── _manifest.yml └── package.yml ├── greek-letters-improved ├── LICENSE ├── README.md ├── _manifest.yml └── package.yml ├── markdown-shortcuts ├── LICENSE ├── README.md ├── _manifest.yml └── package.yml ├── math-symbols ├── LICENSE ├── README.md ├── _manifest.yml └── package.yml └── super-sub-scripts ├── LICENSE ├── README.md ├── _manifest.yml └── package.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /geral.ze 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/README.md -------------------------------------------------------------------------------- /combining-characters/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/combining-characters/LICENSE -------------------------------------------------------------------------------- /combining-characters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/combining-characters/README.md -------------------------------------------------------------------------------- /combining-characters/_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/combining-characters/_manifest.yml -------------------------------------------------------------------------------- /combining-characters/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/combining-characters/package.yml -------------------------------------------------------------------------------- /greek-letters-improved/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/greek-letters-improved/LICENSE -------------------------------------------------------------------------------- /greek-letters-improved/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/greek-letters-improved/README.md -------------------------------------------------------------------------------- /greek-letters-improved/_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/greek-letters-improved/_manifest.yml -------------------------------------------------------------------------------- /greek-letters-improved/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/greek-letters-improved/package.yml -------------------------------------------------------------------------------- /markdown-shortcuts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/markdown-shortcuts/LICENSE -------------------------------------------------------------------------------- /markdown-shortcuts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/markdown-shortcuts/README.md -------------------------------------------------------------------------------- /markdown-shortcuts/_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/markdown-shortcuts/_manifest.yml -------------------------------------------------------------------------------- /markdown-shortcuts/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/markdown-shortcuts/package.yml -------------------------------------------------------------------------------- /math-symbols/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/math-symbols/LICENSE -------------------------------------------------------------------------------- /math-symbols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/math-symbols/README.md -------------------------------------------------------------------------------- /math-symbols/_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/math-symbols/_manifest.yml -------------------------------------------------------------------------------- /math-symbols/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/math-symbols/package.yml -------------------------------------------------------------------------------- /super-sub-scripts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/super-sub-scripts/LICENSE -------------------------------------------------------------------------------- /super-sub-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/super-sub-scripts/README.md -------------------------------------------------------------------------------- /super-sub-scripts/_manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/super-sub-scripts/_manifest.yml -------------------------------------------------------------------------------- /super-sub-scripts/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpmvferreira/espanso-mega-pack/HEAD/super-sub-scripts/package.yml --------------------------------------------------------------------------------