init
This commit is contained in:
commit
6d87ac8ba1
139 changed files with 7604 additions and 0 deletions
64
kitty/.config/kitty/kitty.conf
Normal file
64
kitty/.config/kitty/kitty.conf
Normal file
|
@ -0,0 +1,64 @@
|
|||
# Font settings
|
||||
font_family JetBrains Mono
|
||||
# font_family Fira Code
|
||||
# font_family Iosevka\ Nerd\ Font
|
||||
# font_family MonoLisa
|
||||
# font_family Proxima\ Nova
|
||||
# font_family Source\ Code\ Pro
|
||||
font_size 12.0
|
||||
bold_font auto
|
||||
italic_font auto
|
||||
bold_italic_font auto
|
||||
font_size 12.0
|
||||
|
||||
text_composition_strategy legacy
|
||||
|
||||
# cursor customization
|
||||
# block / beam / underline
|
||||
cursor_shape block
|
||||
cursor_blink_interval 0
|
||||
cursor_stop_blinking_after 0
|
||||
shell_integration no-cursor
|
||||
|
||||
# Window settings
|
||||
remember_window_size no
|
||||
initial_window_width 1200
|
||||
initial_window_height 750
|
||||
window_border_width 1.5pt
|
||||
enabled_layouts tall
|
||||
window_padding_width 0
|
||||
window_margin_width 2
|
||||
hide_window_decorations no
|
||||
|
||||
background_opacity 0.90
|
||||
background_blur 1
|
||||
|
||||
# advance
|
||||
term xterm-kitty
|
||||
|
||||
# Tab bar
|
||||
tab_bar_edge bottom
|
||||
tab_bar_style hidden
|
||||
|
||||
# Color scheme (you'll need to define these colors)
|
||||
# include your_theme.conf
|
||||
# include ./themes/rose-pine.conf
|
||||
# include ./themes/Duskfox.conf
|
||||
include ./themes/Nightfox.conf
|
||||
|
||||
# Disable confirmation on window close
|
||||
confirm_os_window_close 0
|
||||
|
||||
# Hyperlink settings
|
||||
detect_urls yes
|
||||
url_style curly
|
||||
|
||||
# Mouse settings
|
||||
mouse_hide_wait 3.0
|
||||
focus_follows_mouse no
|
||||
|
||||
# ZEN MODE (font size adjustment)
|
||||
map ctrl+shift+plus change_font_size all +1.0
|
||||
map ctrl+shift+minus change_font_size all -1.0
|
||||
map ctrl+shift+0 change_font_size all 0
|
||||
map ctrl+shift+r load_config_file
|
103
kitty/.config/kitty/themes/Duskfox.conf
Normal file
103
kitty/.config/kitty/themes/Duskfox.conf
Normal file
|
@ -0,0 +1,103 @@
|
|||
# vim:ft=kitty
|
||||
## name: Duskfox
|
||||
## author: EdenEast
|
||||
## license: MIT
|
||||
## upstream: https://github.com/EdenEast/nightfox.nvim/blob/main/extra/duskfox/kitty.conf
|
||||
## blurb: Duskfox theme from the neovim colorscheme nightfox.nvim.
|
||||
|
||||
#: All the settings below are colors, which you can choose to modify, or use the
|
||||
#: defaults. You can also add non-color based settings if needed but note that
|
||||
#: these will not work with using kitty @ set-colors with this theme. For a
|
||||
#: reference on what these settings do see https://sw.kovidgoyal.net/kitty/conf/
|
||||
|
||||
#: The basic colors
|
||||
|
||||
foreground #e0def4
|
||||
background #232136
|
||||
selection_foreground #e0def4
|
||||
selection_background #433c59
|
||||
|
||||
|
||||
#: Cursor colors
|
||||
|
||||
cursor #e0def4
|
||||
cursor_text_color #232136
|
||||
|
||||
|
||||
#: URL underline color when hovering with mouse
|
||||
|
||||
url_color #a3be8c
|
||||
|
||||
|
||||
#: kitty window border colors and terminal bell colors
|
||||
|
||||
active_border_color #569fba
|
||||
inactive_border_color #4b4673
|
||||
bell_border_color #ea9a97
|
||||
# visual_bell_color none
|
||||
|
||||
|
||||
#: OS Window titlebar colors
|
||||
|
||||
# wayland_titlebar_color system
|
||||
# macos_titlebar_color system
|
||||
|
||||
|
||||
#: Tab bar colors
|
||||
|
||||
active_tab_foreground #191726
|
||||
active_tab_background #569fba
|
||||
inactive_tab_foreground #817c9c
|
||||
inactive_tab_background #433c59
|
||||
# tab_bar_background none
|
||||
# tab_bar_margin_color none
|
||||
|
||||
|
||||
#: Colors for marks (marked text in the terminal)
|
||||
|
||||
# mark1_foreground black
|
||||
# mark1_background #98d3cb
|
||||
# mark2_foreground black
|
||||
# mark2_background #f2dcd3
|
||||
# mark3_foreground black
|
||||
# mark3_background #f274bc
|
||||
|
||||
|
||||
#: The basic 16 colors
|
||||
|
||||
#: black
|
||||
color0 #393552
|
||||
color8 #47407d
|
||||
|
||||
#: red
|
||||
color1 #eb6f92
|
||||
color9 #f083a2
|
||||
|
||||
#: green
|
||||
color2 #a3be8c
|
||||
color10 #b1d196
|
||||
|
||||
#: yellow
|
||||
color3 #f6c177
|
||||
color11 #f9cb8c
|
||||
|
||||
#: blue
|
||||
color4 #569fba
|
||||
color12 #65b1cd
|
||||
|
||||
#: magenta
|
||||
color5 #c4a7e7
|
||||
color13 #ccb1ed
|
||||
|
||||
#: cyan
|
||||
color6 #9ccfd8
|
||||
color14 #a6dae3
|
||||
|
||||
#: white
|
||||
color7 #e0def4
|
||||
color15 #e2e0f7
|
||||
|
||||
#: You can set the remaining 240 colors as color16 to color255.
|
||||
|
||||
color16 #ea9a97
|
||||
color17 #eb98c3
|
52
kitty/.config/kitty/themes/Nightfox.conf
Normal file
52
kitty/.config/kitty/themes/Nightfox.conf
Normal file
|
@ -0,0 +1,52 @@
|
|||
# vim:ft=kitty
|
||||
|
||||
## name: Nightfox
|
||||
## author: EdenEast
|
||||
## license: MIT
|
||||
## upstream: https://github.com/EdenEast/nightfox.nvim/blob/main/extra/nightfox/nightfox_kitty.conf
|
||||
|
||||
background #192330
|
||||
foreground #cdcecf
|
||||
selection_background #2b3b51
|
||||
selection_foreground #cdcecf
|
||||
url_color #81b29a
|
||||
|
||||
# Cursor
|
||||
# uncomment for reverse background
|
||||
# cursor none
|
||||
cursor #cdcecf
|
||||
|
||||
# Border
|
||||
active_border_color #719cd6
|
||||
inactive_border_color #39506d
|
||||
bell_border_color #f4a261
|
||||
|
||||
# Tabs
|
||||
active_tab_background #719cd6
|
||||
active_tab_foreground #131a24
|
||||
inactive_tab_background #2b3b51
|
||||
inactive_tab_foreground #738091
|
||||
|
||||
# normal
|
||||
color0 #393b44
|
||||
color1 #c94f6d
|
||||
color2 #81b29a
|
||||
color3 #dbc074
|
||||
color4 #719cd6
|
||||
color5 #9d79d6
|
||||
color6 #63cdcf
|
||||
color7 #dfdfe0
|
||||
|
||||
# bright
|
||||
color8 #575860
|
||||
color9 #d16983
|
||||
color10 #8ebaa4
|
||||
color11 #e0c989
|
||||
color12 #86abdc
|
||||
color13 #baa1e2
|
||||
color14 #7ad5d6
|
||||
color15 #e4e4e5
|
||||
|
||||
# extended colors
|
||||
color16 #f4a261
|
||||
color17 #d67ad2
|
56
kitty/.config/kitty/themes/rose-pine-dawn.conf
Normal file
56
kitty/.config/kitty/themes/rose-pine-dawn.conf
Normal file
|
@ -0,0 +1,56 @@
|
|||
## name: Rosé Pine Dawn
|
||||
## author: mvllow
|
||||
## license: MIT
|
||||
## upstream: https://github.com/rose-pine/kitty/blob/main/dist/rose-pine-dawn.conf
|
||||
## blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist
|
||||
|
||||
foreground #575279
|
||||
background #faf4ed
|
||||
selection_foreground #575279
|
||||
selection_background #dfdad9
|
||||
|
||||
cursor #cecacd
|
||||
cursor_text_color #575279
|
||||
|
||||
url_color #907aa9
|
||||
|
||||
active_tab_foreground #575279
|
||||
active_tab_background #f2e9e1
|
||||
inactive_tab_foreground #9893a5
|
||||
inactive_tab_background #faf4ed
|
||||
|
||||
active_border_color #286983
|
||||
inactive_border_color #dfdad9
|
||||
|
||||
# black
|
||||
color0 #f2e9e1
|
||||
color8 #9893a5
|
||||
|
||||
# red
|
||||
color1 #b4637a
|
||||
color9 #b4637a
|
||||
|
||||
# green
|
||||
color2 #286983
|
||||
color10 #286983
|
||||
|
||||
# yellow
|
||||
color3 #ea9d34
|
||||
color11 #ea9d34
|
||||
|
||||
# blue
|
||||
color4 #56949f
|
||||
color12 #56949f
|
||||
|
||||
# magenta
|
||||
color5 #907aa9
|
||||
color13 #907aa9
|
||||
|
||||
# cyan
|
||||
color6 #d7827e
|
||||
color14 #d7827e
|
||||
|
||||
# white
|
||||
color7 #575279
|
||||
color15 #575279
|
||||
|
56
kitty/.config/kitty/themes/rose-pine-moon.conf
Normal file
56
kitty/.config/kitty/themes/rose-pine-moon.conf
Normal file
|
@ -0,0 +1,56 @@
|
|||
## 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
|
||||
|
||||
active_border_color #3e8fb0
|
||||
inactive_border_color #44415a
|
||||
|
||||
# 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
|
||||
|
56
kitty/.config/kitty/themes/rose-pine.conf
Normal file
56
kitty/.config/kitty/themes/rose-pine.conf
Normal file
|
@ -0,0 +1,56 @@
|
|||
## name: Rosé Pine
|
||||
## author: mvllow
|
||||
## license: MIT
|
||||
## upstream: https://github.com/rose-pine/kitty/blob/main/dist/rose-pine.conf
|
||||
## blurb: All natural pine, faux fur and a bit of soho vibes for the classy minimalist
|
||||
|
||||
foreground #e0def4
|
||||
background #191724
|
||||
selection_foreground #e0def4
|
||||
selection_background #403d52
|
||||
|
||||
cursor #524f67
|
||||
cursor_text_color #e0def4
|
||||
|
||||
url_color #c4a7e7
|
||||
|
||||
active_tab_foreground #e0def4
|
||||
active_tab_background #26233a
|
||||
inactive_tab_foreground #6e6a86
|
||||
inactive_tab_background #191724
|
||||
|
||||
active_border_color #31748f
|
||||
inactive_border_color #403d52
|
||||
|
||||
# black
|
||||
color0 #26233a
|
||||
color8 #6e6a86
|
||||
|
||||
# red
|
||||
color1 #eb6f92
|
||||
color9 #eb6f92
|
||||
|
||||
# green
|
||||
color2 #31748f
|
||||
color10 #31748f
|
||||
|
||||
# yellow
|
||||
color3 #f6c177
|
||||
color11 #f6c177
|
||||
|
||||
# blue
|
||||
color4 #9ccfd8
|
||||
color12 #9ccfd8
|
||||
|
||||
# magenta
|
||||
color5 #c4a7e7
|
||||
color13 #c4a7e7
|
||||
|
||||
# cyan
|
||||
color6 #ebbcba
|
||||
color14 #ebbcba
|
||||
|
||||
# white
|
||||
color7 #e0def4
|
||||
color15 #e0def4
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue