├── .editorconfig ├── LICENSE ├── README.md ├── assets └── res.png ├── gedit.tera └── themes ├── catppuccin-frappe.xml ├── catppuccin-latte.xml ├── catppuccin-macchiato.xml └── catppuccin-mocha.xml /.editorconfig: -------------------------------------------------------------------------------- 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 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 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: -------------------------------------------------------------------------------- 1 |

2 | Logo
3 | 4 | Catppuccin for Gedit 5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 |

13 | 14 |

15 | 16 |

17 | 18 | ## Usage 19 | 20 | 1. Copy your preferred flavor(s) from [`themes/`](./themes/) to 21 | `.local/share/libgedit-gtksourceview-300/styles` (or 22 | `~/.local/share/gedit/styles` for versions earlier than Gedit 47). 23 | 2. Open Gedit's preferences menu and navigate to the **Fonts and Colors** menu. 24 | 3. Choose the flavor of your choice. 25 | 4. Enjoy! 26 | 27 | ## 💝 Thanks to 28 | 29 | - Paolo Borelli, whose Oblivion theme I referenced when making this port. 30 | - [sacerdOS](https://github.com/sacerd-OS) 31 | 32 |   33 | 34 |

35 | 36 |

37 | 38 |

39 | Copyright © 2021-present Catppuccin Org 40 |

41 | 42 |

43 | 44 |

45 | -------------------------------------------------------------------------------- /assets/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/gedit/e0821cf4b262733d4ab2edc3caf08ac4b1d7a7ea/assets/res.png -------------------------------------------------------------------------------- /gedit.tera: -------------------------------------------------------------------------------- 1 | --- 2 | whiskers: 3 | version: "^2.3.0" 4 | matrix: 5 | - flavor 6 | filename: "themes/catppuccin-{{ flavor.identifier }}.xml" 7 | --- 8 | 9 | 10 | Soothing pastel theme for Gedit 11 | 12 | 13 | {%- for identifier, color in flavor.colors %} 14 | 15 | {%- endfor %} 16 | 17 | 18 |