[kitty] Add vim foldmethod to configuration file

This commit is contained in:
Daniel Carrillo 2022-01-04 17:05:05 +01:00
parent 09bf8eb8fe
commit 99d8ae50b0
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 27 additions and 6 deletions

View File

@ -1,4 +1,6 @@
## fonts
# vim:fileencoding=utf-8:foldmethod=marker
#: Fonts {{{
font_family Roboto Mono Regular
bold_font Roboto Mono Bold
@ -9,18 +11,29 @@ font_features none
symbol_map U+E007-U+F8E8 Font Awesome 5 Brands
symbol_map U+F022 Font Awesome 5 Free
#: }}}
## cursor
#: Cursor {{{
cursor_shape underline
cursor_beam_thickness 1.0
cursor_underline_thickness 0.5
#: }}}
#: Scrollback {{{
scrollback_lines 50000
#: }}}
#: Terminal bell {{{
enable_audio_bell no
## windows
#: }}}
#: Window layout {{{
remember_window_size no
initial_window_width 2100
@ -28,7 +41,9 @@ initial_window_height 1150
window_padding_width 1
active_border_color #C0C0C0
## colors
#: }}}
#: Color scheme {{{
foreground #BABABA
background #073642
@ -65,11 +80,15 @@ color14 #3D97E2
color7 #BABABA
color15 #BABABA
## shell_integration
#: }}}
#: Advanced {{{
shell_integration no-cursor
## key maps
#: }}}
#: Maps {{{
map kitty_mod+y launch --stdin-source=@last_cmd_output --type=clipboard
map kitty_mod+f launch --type=overlay --stdin-source=@screen_scrollback fzf --tac --no-sort --no-mouse -i
@ -83,3 +102,5 @@ map alt+right next_window
map alt+down next_window
map F1 launch --allow-remote-control kitty +kitten broadcast
map ctrl+alt+p kitten secrets.py "description" "Tilix Password"
#: }}}