Skip to content

Commit a9390b4

Browse files
committed
Copy catppuccin template
0 parents  commit a9390b4

File tree

4 files changed

+121
-0
lines changed

4 files changed

+121
-0
lines changed

.editorconfig

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# EditorConfig is awesome: https://EditorConfig.org
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
indent_size = 2
10+
indent_style = space
11+
end_of_line = lf
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
15+
# go
16+
[*.go]
17+
indent_style = tab
18+
indent_size = 4
19+
20+
# python
21+
[*.{ini,py,py.tpl,rst}]
22+
indent_size = 4
23+
24+
# rust
25+
[*.rs]
26+
indent_size = 4
27+
28+
# documentation, utils
29+
[*.{md,mdx,diff}]
30+
trim_trailing_whitespace = false
31+
32+
# windows shell scripts
33+
[*.{cmd,bat,ps1}]
34+
end_of_line = crlf

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Catppuccin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<h3 align="center">
2+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x1544_circle.png" width="100" alt="Logo"/><br/>
3+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/>
4+
Catppuccin for <a href="https://github.com/catppuccin/template">App</a>
5+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/>
6+
</h3>
7+
8+
<p align="center">
9+
<a href="https://github.com/catppuccin/template/stargazers"><img src="https://img.shields.io/github/stars/catppuccin/template?colorA=363a4f&colorB=b7bdf8&style=for-the-badge"></a>
10+
<a href="https://github.com/catppuccin/template/issues"><img src="https://img.shields.io/github/issues/catppuccin/template?colorA=363a4f&colorB=f5a97f&style=for-the-badge"></a>
11+
<a href="https://github.com/catppuccin/template/contributors"><img src="https://img.shields.io/github/contributors/catppuccin/template?colorA=363a4f&colorB=a6da95&style=for-the-badge"></a>
12+
</p>
13+
14+
<p align="center">
15+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/previews/preview.webp"/>
16+
</p>
17+
18+
## Previews
19+
20+
<details>
21+
<summary>🌻 Latte</summary>
22+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/previews/latte.webp"/>
23+
</details>
24+
<details>
25+
<summary>🪴 Frappé</summary>
26+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/previews/frappe.webp"/>
27+
</details>
28+
<details>
29+
<summary>🌺 Macchiato</summary>
30+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/previews/macchiato.webp"/>
31+
</details>
32+
<details>
33+
<summary>🌿 Mocha</summary>
34+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/previews/mocha.webp"/>
35+
</details>
36+
37+
## Usage
38+
39+
1. Clone this repository locally
40+
2. Open the app's settings
41+
3. Select `import theme` and browse to where you cloned Catppuccin
42+
4. Select it
43+
44+
<!-- this section is optional -->
45+
## 🙋 FAQ
46+
47+
- Q: **_"Where can I find the doc?"_**\
48+
A: Run `:help theme`
49+
50+
## 💝 Thanks to
51+
52+
- [Human](https://github.com/catppuccin)
53+
54+
&nbsp;
55+
56+
<p align="center">
57+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/footers/gray0_ctp_on_line.svg?sanitize=true" />
58+
</p>
59+
60+
<p align="center">
61+
Copyright &copy; 2021-present <a href="https://github.com/catppuccin" target="_blank">Catppuccin Org</a>
62+
</p>
63+
64+
<p align="center">
65+
<a href="https://github.com/catppuccin/catppuccin/blob/main/LICENSE"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a>
66+
</p>

assets/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)