Kitty config
This commit is contained in:
parent
7950237e65
commit
c88b2dd3f2
3 changed files with 2722 additions and 0 deletions
53
roles/dotfiles/files/kitty_theme
Normal file
53
roles/dotfiles/files/kitty_theme
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
## name: Rosé Pine Moon
|
||||
## author: mvllow
|
||||
## license: MIT
|
||||
## upstream: https://github.com/rose-pine/kitty/blob/main/dist/rose-pine-moon.conf
|
||||
## blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist
|
||||
|
||||
foreground #e0def4
|
||||
background #232136
|
||||
selection_foreground #e0def4
|
||||
selection_background #44415a
|
||||
|
||||
cursor #56526e
|
||||
cursor_text_color #e0def4
|
||||
|
||||
url_color #c4a7e7
|
||||
|
||||
active_tab_foreground #e0def4
|
||||
active_tab_background #393552
|
||||
inactive_tab_foreground #6e6a86
|
||||
inactive_tab_background #232136
|
||||
|
||||
# black
|
||||
color0 #393552
|
||||
color8 #6e6a86
|
||||
|
||||
# red
|
||||
color1 #eb6f92
|
||||
color9 #eb6f92
|
||||
|
||||
# green
|
||||
color2 #3e8fb0
|
||||
color10 #3e8fb0
|
||||
|
||||
# yellow
|
||||
color3 #f6c177
|
||||
color11 #f6c177
|
||||
|
||||
# blue
|
||||
color4 #9ccfd8
|
||||
color12 #9ccfd8
|
||||
|
||||
# magenta
|
||||
color5 #c4a7e7
|
||||
color13 #c4a7e7
|
||||
|
||||
# cyan
|
||||
color6 #ea9a97
|
||||
color14 #ea9a97
|
||||
|
||||
# white
|
||||
color7 #e0def4
|
||||
color15 #e0def4
|
||||
|
||||
|
|
@ -1,2 +1,14 @@
|
|||
---
|
||||
# tasks file for dotfiles
|
||||
|
||||
# kitty
|
||||
- block:
|
||||
- name: Copy kitty conf template
|
||||
ansible.builtin.template:
|
||||
src: kitty_conf
|
||||
dest: "{{ ansible_env.HOME }}/.config/kitty/kitty.conf"
|
||||
|
||||
- name: Copy kitty theme
|
||||
ansible.builtin.copy:
|
||||
src: kitty_theme
|
||||
dest: "{{ ansible_env.HOME }}/.config/kitty/current-theme.conf"
|
||||
2657
roles/dotfiles/templates/kitty_conf
Normal file
2657
roles/dotfiles/templates/kitty_conf
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue