├── .gitignore ├── LICENSE ├── README.md ├── autoload └── airline │ └── themes │ └── amora.vim ├── colors └── amora.vim ├── discord ├── README.md ├── discord-amora-theme.css └── discord-amora-theme.user.css ├── iTerm2 ├── Amora.itermcolors ├── Kiwi.itermcolors └── Mirtilo.itermcolors ├── images └── amora_preview.png ├── install.sh ├── kitty-config └── README.md ├── vscode └── amora │ ├── .vscode │ └── launch.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── themes │ ├── Amora-focus-theme.json │ └── Amora-theme.json │ └── vsc-extension-quickstart.md └── windows-terminal └── amora.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/README.md -------------------------------------------------------------------------------- /autoload/airline/themes/amora.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/autoload/airline/themes/amora.vim -------------------------------------------------------------------------------- /colors/amora.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/colors/amora.vim -------------------------------------------------------------------------------- /discord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/discord/README.md -------------------------------------------------------------------------------- /discord/discord-amora-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/discord/discord-amora-theme.css -------------------------------------------------------------------------------- /discord/discord-amora-theme.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/discord/discord-amora-theme.user.css -------------------------------------------------------------------------------- /iTerm2/Amora.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/iTerm2/Amora.itermcolors -------------------------------------------------------------------------------- /iTerm2/Kiwi.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/iTerm2/Kiwi.itermcolors -------------------------------------------------------------------------------- /iTerm2/Mirtilo.itermcolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/iTerm2/Mirtilo.itermcolors -------------------------------------------------------------------------------- /images/amora_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/images/amora_preview.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/install.sh -------------------------------------------------------------------------------- /kitty-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/kitty-config/README.md -------------------------------------------------------------------------------- /vscode/amora/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/.vscode/launch.json -------------------------------------------------------------------------------- /vscode/amora/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/.vscodeignore -------------------------------------------------------------------------------- /vscode/amora/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/CHANGELOG.md -------------------------------------------------------------------------------- /vscode/amora/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/README.md -------------------------------------------------------------------------------- /vscode/amora/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/package.json -------------------------------------------------------------------------------- /vscode/amora/themes/Amora-focus-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/themes/Amora-focus-theme.json -------------------------------------------------------------------------------- /vscode/amora/themes/Amora-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/themes/Amora-theme.json -------------------------------------------------------------------------------- /vscode/amora/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/vscode/amora/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /windows-terminal/amora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owozsh/amora/HEAD/windows-terminal/amora.json --------------------------------------------------------------------------------