kitty configuration
This commit is contained in:
parent
5e7ff61757
commit
a1120dddeb
3 changed files with 2733 additions and 0 deletions
51
.config/kitty/current-theme.conf
Normal file
51
.config/kitty/current-theme.conf
Normal file
|
@ -0,0 +1,51 @@
|
|||
# vim:ft=kitty
|
||||
|
||||
## name: Adwaita dark
|
||||
## license: MIT
|
||||
## author: Emil Löfquist (https://github.com/ewal)
|
||||
## upstream: https://github.com/ewal/kitty-adwaita/blob/main/adwaita_dark.conf
|
||||
## blurb: Adwaita dark - based on https://github.com/Mofiqul/adwaita.nvim
|
||||
|
||||
background #1d1d1d
|
||||
foreground #deddda
|
||||
|
||||
selection_background #303030
|
||||
selection_foreground #c0bfbc
|
||||
|
||||
url_color #1a5fb4
|
||||
|
||||
wayland_titlebar_color system
|
||||
macos_titlebar_color system
|
||||
|
||||
cursor #deddda
|
||||
cursor_text_color #1d1d1d
|
||||
|
||||
active_border_color #4f4f4f
|
||||
inactive_border_color #282828
|
||||
bell_border_color #ed333b
|
||||
visual_bell_color none
|
||||
|
||||
active_tab_background #242424
|
||||
active_tab_foreground #fcfcfc
|
||||
inactive_tab_background #303030
|
||||
inactive_tab_foreground #b0afac
|
||||
tab_bar_background none
|
||||
tab_bar_margin_color none
|
||||
|
||||
color0 #1d1d1d
|
||||
color1 #ed333b
|
||||
color2 #57e389
|
||||
color3 #ff7800
|
||||
color4 #62a0ea
|
||||
color5 #9141ac
|
||||
color6 #5bc8af
|
||||
color7 #deddda
|
||||
|
||||
color8 #9a9996
|
||||
color9 #f66151
|
||||
color10 #8ff0a4
|
||||
color11 #ffa348
|
||||
color12 #99c1f1
|
||||
color13 #dc8add
|
||||
color14 #93ddc2
|
||||
color15 #f6f5f4
|
|
@ -46,6 +46,8 @@
|
|||
macos_fish_path: /opt/homebrew/bin/fish
|
||||
arch_fish_path: /usr/bin/fish
|
||||
|
||||
kitty_font_size: 11.0
|
||||
|
||||
tasks:
|
||||
- name: Check the current OS family
|
||||
ansible.builtin.set_fact:
|
||||
|
@ -146,3 +148,16 @@
|
|||
{% elif is_arch %}{{ arch_fish_path }}\
|
||||
{% else %}/bin/fish\
|
||||
{% endif %}"
|
||||
|
||||
- name: macOS-specific kitty settings
|
||||
ansible.builtin.set_fact:
|
||||
kitty_font_size: 14.0
|
||||
when: is_macos
|
||||
|
||||
- name: Configure kitty
|
||||
ansible.builtin.template:
|
||||
src: templates/kitty.conf.j2
|
||||
dest: ~/.config/kitty/kitty.conf
|
||||
mode: u+rw,g+r,o+r
|
||||
variable_start_string: '[['
|
||||
variable_end_string: ']]'
|
||||
|
|
2667
.local/share/dotfiles/templates/kitty.conf.j2
Normal file
2667
.local/share/dotfiles/templates/kitty.conf.j2
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue