From cc14ec3345d081a4a1dc94be1096eba770ba19d1 Mon Sep 17 00:00:00 2001 From: Rabbit Date: Sat, 21 Feb 2026 22:43:41 +0300 Subject: [PATCH] Fish --- .config/btop/btop.conf | 272 ++ .config/btop/themes/tokyonight_storm.theme | 73 + .config/fastfetch/Silly_Cat_(Character).webp | Bin 0 -> 46246 bytes .config/fastfetch/config.jsonc | 8 +- .config/fish/config.fish | 19 +- .../functions/fish_command_not_found.fish | 12 + .config/fish/functions/fish_greeting.fish | 14 + .config/kitty/base.conf | 3004 +++++++++++++++++ .config/kitty/cat.png | 1 + .config/kitty/current-theme.conf | 50 + .config/kitty/kitty.conf | 4 + .config/kitty/kitty.conf.bak | 2997 ++++++++++++++++ .config/kitty/solid.conf | 3 + .config/nvim/init.lua | 10 + .config/nvim/lazy-lock.json | 6 + .config/nvim/lua/config/lazy.lua | 29 + .config/nvim/lua/plugins/line.lua | 62 + .config/nvim/lua/plugins/theme.lua | 14 + .config/omf/bundle | 4 + .config/omf/channel | 1 + .config/omf/theme | 1 + .config/zellij/config.kdl | 536 +++ .config/zellij/themes/tokyonight_storm.kdl | 22 + kitten | 0 24 files changed, 7126 insertions(+), 16 deletions(-) create mode 100644 .config/btop/btop.conf create mode 100644 .config/btop/themes/tokyonight_storm.theme create mode 100644 .config/fastfetch/Silly_Cat_(Character).webp create mode 100644 .config/fish/functions/fish_command_not_found.fish create mode 100644 .config/fish/functions/fish_greeting.fish create mode 100644 .config/kitty/base.conf create mode 120000 .config/kitty/cat.png create mode 100644 .config/kitty/current-theme.conf create mode 100644 .config/kitty/kitty.conf create mode 100644 .config/kitty/kitty.conf.bak create mode 100644 .config/kitty/solid.conf create mode 100644 .config/nvim/init.lua create mode 100644 .config/nvim/lazy-lock.json create mode 100644 .config/nvim/lua/config/lazy.lua create mode 100644 .config/nvim/lua/plugins/line.lua create mode 100644 .config/nvim/lua/plugins/theme.lua create mode 100644 .config/omf/bundle create mode 100644 .config/omf/channel create mode 100644 .config/omf/theme create mode 100644 .config/zellij/config.kdl create mode 100644 .config/zellij/themes/tokyonight_storm.kdl create mode 100644 kitten diff --git a/.config/btop/btop.conf b/.config/btop/btop.conf new file mode 100644 index 0000000..e88d8fa --- /dev/null +++ b/.config/btop/btop.conf @@ -0,0 +1,272 @@ +#? Config file for btop v.1.4.6 + +#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. +#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" +color_theme = "/home/arch/.config/btop/themes/tokyonight_storm.theme" + +#* If the theme set background should be shown, set to False if you want terminal background transparency. +theme_background = true + +#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false. +truecolor = true + +#* Set to true to force tty mode regardless if a real tty has been detected or not. +#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols. +force_tty = false + +#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets. +#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box. +#* Use whitespace " " as separator between different presets. +#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty" +presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" + +#* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists. +#* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift. +vim_keys = false + +#* Rounded corners on boxes, is ignored if TTY mode is ON. +rounded_corners = true + +#* Use terminal synchronized output sequences to reduce flickering on supported terminals. +terminal_sync = true + +#* Default symbols to use for graph creation, "braille", "block" or "tty". +#* "braille" offers the highest resolution but might not be included in all fonts. +#* "block" has half the resolution of braille but uses more common characters. +#* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY. +#* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view. +graph_symbol = "braille" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_cpu = "default" + +# Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty". +graph_symbol_gpu = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_mem = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_net = "default" + +# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". +graph_symbol_proc = "default" + +#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. +shown_boxes = "cpu mem net proc" + +#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. +update_ms = 2000 + +#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct", +#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly. +proc_sorting = "cpu lazy" + +#* Reverse sorting order, True or False. +proc_reversed = false + +#* Show processes as a tree. +proc_tree = false + +#* Use the cpu graph colors in the process list. +proc_colors = true + +#* Use a darkening gradient in the process list. +proc_gradient = true + +#* If process cpu usage should be of the core it's running on or usage of the total available cpu power. +proc_per_core = false + +#* Show process memory as bytes instead of percent. +proc_mem_bytes = true + +#* Show cpu graph for each process. +proc_cpu_graphs = true + +#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) +proc_info_smaps = false + +#* Show proc box on left side of screen instead of right. +proc_left = false + +#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop). +proc_filter_kernel = false + +#* In tree-view, always accumulate child process resources in the parent process. +proc_aggregate = false + +#* Should cpu and memory usage display be preserved for dead processes when paused. +keep_dead_proc_usage = false + +#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available. +#* Select from a list of detected attributes from the options menu. +cpu_graph_upper = "Auto" + +#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available. +#* Select from a list of detected attributes from the options menu. +cpu_graph_lower = "Auto" + +#* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off". +show_gpu_info = "Auto" + +#* Toggles if the lower CPU graph should be inverted. +cpu_invert_lower = true + +#* Set to True to completely disable the lower CPU graph. +cpu_single_graph = false + +#* Show cpu box at bottom of screen instead of top. +cpu_bottom = false + +#* Shows the system uptime in the CPU box. +show_uptime = true + +#* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo. +show_cpu_watts = true + +#* Show cpu temperature. +check_temp = true + +#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors. +cpu_sensor = "Auto" + +#* Show temperatures for cpu cores also if check_temp is True and sensors has been found. +show_coretemp = true + +#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core. +#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine. +#* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries. +#* Example: "4:0 5:1 6:3" +cpu_core_map = "" + +#* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine". +temp_scale = "celsius" + +#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024. +base_10_sizes = false + +#* Show CPU frequency. +show_cpu_freq = true + +#* How to calculate CPU frequency, available values: "first", "range", "lowest", "highest" and "average". +freq_mode = "first" + +#* Draw a clock at top of screen, formatting according to strftime, empty string to disable. +#* Special formatting: /host = hostname | /user = username | /uptime = system uptime +clock_format = "%X" + +#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort. +background_update = true + +#* Custom cpu model name, empty string to disable. +custom_cpu_name = "" + +#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ". +#* Only disks matching the filter will be shown. Prepend exclude= to only show disks not matching the filter. Examples: disk_filter="/boot /home/user", disks_filter="exclude=/boot /home/user" +disks_filter = "" + +#* Show graphs instead of meters for memory values. +mem_graphs = true + +#* Show mem box below net box instead of above. +mem_below_net = false + +#* Count ZFS ARC in cached and available memory. +zfs_arc_cached = true + +#* If swap memory should be shown in memory box. +show_swap = true + +#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk. +swap_disk = true + +#* If mem box should be split to also show disks info. +show_disks = true + +#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar. +only_physical = true + +#* Read disks list from /etc/fstab. This also disables only_physical. +use_fstab = true + +#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool) +zfs_hide_datasets = false + +#* Set to true to show available disk space for privileged users. +disk_free_priv = false + +#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view. +show_io_stat = true + +#* Toggles io mode for disks, showing big graphs for disk read/write speeds. +io_mode = false + +#* Set to True to show combined read/write io graphs in io mode. +io_graph_combined = false + +#* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ". +#* Example: "/mnt/media:100 /:20 /boot:1". +io_graph_speeds = "" + +#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False. +net_download = 100 + +net_upload = 100 + +#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. +net_auto = true + +#* Sync the auto scaling for download and upload to whichever currently has the highest scale. +net_sync = true + +#* Starts with the Network Interface specified here. +net_iface = "" + +#* "True" shows bitrates in base 10 (Kbps, Mbps). "False" shows bitrates in binary sizes (Kibps, Mibps, etc.). "Auto" uses base_10_sizes. +base_10_bitrate = "Auto" + +#* Show battery stats in top right if battery is present. +show_battery = true + +#* Which battery to use if multiple are present. "Auto" for auto detection. +selected_battery = "Auto" + +#* Show power stats of battery next to charge indicator. +show_battery_watts = true + +#* Set loglevel for "~/.local/state/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". +#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. +log_level = "WARNING" + +#* Automatically save current settings to config file on exit. +save_config_on_exit = true + +#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards. +nvml_measure_pcie_speeds = true + +#* Measure PCIe throughput on AMD cards, may impact performance on certain cards. +rsmi_measure_pcie_speeds = true + +#* Horizontally mirror the GPU graph. +gpu_mirror_graph = true + +#* Set which GPU vendors to show. Available values are "nvidia amd intel" +shown_gpus = "nvidia amd intel" + +#* Custom gpu0 model name, empty string to disable. +custom_gpu_name0 = "" + +#* Custom gpu1 model name, empty string to disable. +custom_gpu_name1 = "" + +#* Custom gpu2 model name, empty string to disable. +custom_gpu_name2 = "" + +#* Custom gpu3 model name, empty string to disable. +custom_gpu_name3 = "" + +#* Custom gpu4 model name, empty string to disable. +custom_gpu_name4 = "" + +#* Custom gpu5 model name, empty string to disable. +custom_gpu_name5 = "" diff --git a/.config/btop/themes/tokyonight_storm.theme b/.config/btop/themes/tokyonight_storm.theme new file mode 100644 index 0000000..2fd2f6b --- /dev/null +++ b/.config/btop/themes/tokyonight_storm.theme @@ -0,0 +1,73 @@ +# Theme: tokyonight_storm +# By: Folke Lemaitre + +theme[main_bg]="#24283b" +theme[main_fg]="#c0caf5" + +# Title color for boxes +theme[title]="#c0caf5" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#ff9e64" + +# Selected item in processes box +theme[selected_bg]="#292e42" +theme[selected_fg]="#7dcfff" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#7dcfff" + +# Cpu box outline color +theme[cpu_box]="#29a4bd" + +# Memory/disks box outline color +theme[mem_box]="#29a4bd" + +# Net up/down box outline color +theme[net_box]="#29a4bd" + +# Processes box outline color +theme[proc_box]="#29a4bd" + +# Box divider line and small boxes line color +theme[div_line]="#29a4bd" + +# Temperature graph colors +theme[temp_start]="#9ece6a" +theme[temp_mid]="#e0af68" +theme[temp_end]="#f7768e" + +# CPU graph colors +theme[cpu_start]="#9ece6a" +theme[cpu_mid]="#e0af68" +theme[cpu_end]="#f7768e" + +# Mem/Disk free meter +theme[free_start]="#9ece6a" +theme[free_mid]="#e0af68" +theme[free_end]="#f7768e" + +# Mem/Disk cached meter +theme[cached_start]="#9ece6a" +theme[cached_mid]="#e0af68" +theme[cached_end]="#f7768e" + +# Mem/Disk available meter +theme[available_start]="#9ece6a" +theme[available_mid]="#e0af68" +theme[available_end]="#f7768e" + +# Mem/Disk used meter +theme[used_start]="#9ece6a" +theme[used_mid]="#e0af68" +theme[used_end]="#f7768e" + +# Download graph colors +theme[download_start]="#9ece6a" +theme[download_mid]="#e0af68" +theme[download_end]="#f7768e" + +# Upload graph colors +theme[upload_start]="#9ece6a" +theme[upload_mid]="#e0af68" +theme[upload_end]="#f7768e" \ No newline at end of file diff --git a/.config/fastfetch/Silly_Cat_(Character).webp b/.config/fastfetch/Silly_Cat_(Character).webp new file mode 100644 index 0000000000000000000000000000000000000000..dca173154f63a2c92c06d567c4f30fbc044958fc GIT binary patch literal 46246 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 P/dev/null) + printf '%s may be found in the following packages:\n' "$cmd" + for pkg in $pkgs + printf ' %s\n' "$pkg" + end + else + __fish_default_command_not_found_handler "$cmd" + end +end diff --git a/.config/fish/functions/fish_greeting.fish b/.config/fish/functions/fish_greeting.fish new file mode 100644 index 0000000..31b6b11 --- /dev/null +++ b/.config/fish/functions/fish_greeting.fish @@ -0,0 +1,14 @@ +function fish_greeting + if test (string match -r 'kitty|ghostty' $TERM) + omf t bobthefish + fastfetch --logo-type kitty -l ~/.config/fastfetch/logo.png + if test $HYPRLAND_INSTANCE_SIGNATURE; echo -e "\e[34m \e[39m""$(hyprctl splash)"; end + else + if test $TERM = 'linux' + omf t '' + fastfetch -c none + else + fastfetch + end + end +end diff --git a/.config/kitty/base.conf b/.config/kitty/base.conf new file mode 100644 index 0000000..d838773 --- /dev/null +++ b/.config/kitty/base.conf @@ -0,0 +1,3004 @@ +# vim:fileencoding=utf-8:foldmethod=marker + +# BEGIN_KITTY_THEME +# Tokyo Night Storm +include current-theme.conf +# END_KITTY_THEME + +#: Fonts {{{ + +#: kitty has very powerful font management. You can configure +#: individual font faces and even specify special fonts for particular +#: characters. + +# font_family monospace +# bold_font auto +# italic_font auto +# bold_italic_font auto + +#: You can specify different fonts for the bold/italic/bold-italic +#: variants. The easiest way to select fonts is to run the `kitten +#: choose-fonts` command which will present a nice UI for you to +#: select the fonts you want with previews and support for selecting +#: variable fonts and font features. If you want to learn to select +#: fonts manually, read the font specification syntax +#: . + +# font_size 11.0 + +#: Font size (in pts). + +# force_ltr no + +#: kitty does not support BIDI (bidirectional text), however, for RTL +#: scripts, words are automatically displayed in RTL. That is to say, +#: in an RTL script, the words "HELLO WORLD" display in kitty as +#: "WORLD HELLO", and if you try to select a substring of an RTL- +#: shaped string, you will get the character that would be there had +#: the string been LTR. For example, assuming the Hebrew word ירושלים, +#: selecting the character that on the screen appears to be ם actually +#: writes into the selection buffer the character י. kitty's default +#: behavior is useful in conjunction with a filter to reverse the word +#: order, however, if you wish to manipulate RTL glyphs, it can be +#: very challenging to work with, so this option is provided to turn +#: it off. Furthermore, this option can be used with the command line +#: program GNU FriBidi +#: to get BIDI support, because it will force kitty to always treat +#: the text as LTR, which FriBidi expects for terminals. + +# symbol_map + +#: E.g. symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols + +#: Map the specified Unicode codepoints to a particular font. Useful +#: if you need special rendering for some symbols, such as for +#: Powerline. Avoids the need for patched fonts. Each Unicode code +#: point is specified in the form `U+`. You +#: can specify multiple code points, separated by commas and ranges +#: separated by hyphens. This option can be specified multiple times. +#: The syntax is:: + +#: symbol_map codepoints Font Family Name + +# narrow_symbols + +#: E.g. narrow_symbols U+E0A0-U+E0A3,U+E0C0-U+E0C7 1 + +#: Usually, for Private Use Unicode characters and some symbol/dingbat +#: characters, if the character is followed by one or more spaces, +#: kitty will use those extra cells to render the character larger, if +#: the character in the font has a wide aspect ratio. Using this +#: option you can force kitty to restrict the specified code points to +#: render in the specified number of cells (defaulting to one cell). +#: This option can be specified multiple times. The syntax is:: + +#: narrow_symbols codepoints [optionally the number of cells] + +# disable_ligatures never + +#: Choose how you want to handle multi-character ligatures. The +#: default is to always render them. You can tell kitty to not render +#: them when the cursor is over them by using cursor to make editing +#: easier, or have kitty never render them at all by using always, if +#: you don't like them. The ligature strategy can be set per-window +#: either using the kitty remote control facility or by defining +#: shortcuts for it in kitty.conf, for example:: + +#: map alt+1 disable_ligatures_in active always +#: map alt+2 disable_ligatures_in all never +#: map alt+3 disable_ligatures_in tab cursor + +#: Note that this refers to programming ligatures, typically +#: implemented using the calt OpenType feature. For disabling general +#: ligatures, use the font_features option. + +# font_features + +#: E.g. font_features none + +#: Choose exactly which OpenType features to enable or disable. Note +#: that for the main fonts, features can be specified when selecting +#: the font using the choose-fonts kitten. This setting is useful for +#: fallback fonts. + +#: Some fonts might have features worthwhile in a terminal. For +#: example, Fira Code includes a discretionary feature, zero, which in +#: that font changes the appearance of the zero (0), to make it more +#: easily distinguishable from Ø. Fira Code also includes other +#: discretionary features known as Stylistic Sets which have the tags +#: ss01 through ss20. + +#: For the exact syntax to use for individual features, see the +#: HarfBuzz documentation . + +#: Note that this code is indexed by PostScript name, and not the font +#: family. This allows you to define very precise feature settings; +#: e.g. you can disable a feature in the italic font but not in the +#: regular font. + +#: On Linux, font features are first read from the FontConfig database +#: and then this option is applied, so they can be configured in a +#: single, central place. + +#: To get the PostScript name for a font, use the `fc-scan file.ttf` +#: command on Linux or the `Font Book tool on macOS +#: `__. + +#: Enable alternate zero and oldstyle numerals:: + +#: font_features FiraCode-Retina +zero +onum + +#: Enable only alternate zero in the bold font:: + +#: font_features FiraCode-Bold +zero + +#: Disable the normal ligatures, but keep the calt feature which (in +#: this font) breaks up monotony:: + +#: font_features TT2020StyleB-Regular -liga +calt + +#: In conjunction with force_ltr, you may want to disable Arabic +#: shaping entirely, and only look at their isolated forms if they +#: show up in a document. You can do this with e.g.:: + +#: font_features UnifontMedium +isol -medi -fina -init + +# modify_font + +#: Modify font characteristics such as the position or thickness of +#: the underline and strikethrough. The modifications can have the +#: suffix px for pixels or % for percentage of original value. No +#: suffix means use pts. For example:: + +#: modify_font underline_position -2 +#: modify_font underline_thickness 150% +#: modify_font strikethrough_position 2px + +#: Additionally, you can modify the size of the cell in which each +#: font glyph is rendered and the baseline at which the glyph is +#: placed in the cell. For example:: + +#: modify_font cell_width 80% +#: modify_font cell_height -2px +#: modify_font baseline 3 + +#: Note that modifying the baseline will automatically adjust the +#: underline and strikethrough positions by the same amount. +#: Increasing the baseline raises glyphs inside the cell and +#: decreasing it lowers them. Decreasing the cell size might cause +#: rendering artifacts, so use with care. + +# box_drawing_scale 0.001, 1, 1.5, 2 + +#: The sizes of the lines used for the box drawing Unicode characters. +#: These values are in pts. They will be scaled by the monitor DPI to +#: arrive at a pixel value. There must be four values corresponding to +#: thin, normal, thick, and very thick lines. + +# undercurl_style thin-sparse + +#: The style with which undercurls are rendered. This option takes the +#: form (thin|thick)-(sparse|dense). Thin and thick control the +#: thickness of the undercurl. Sparse and dense control how often the +#: curl oscillates. With sparse the curl will peak once per character, +#: with dense twice. Changing this option dynamically via reloading +#: the config or remote control is undefined. + +# underline_exclusion 1 + +#: By default kitty renders gaps in underlines when they overlap with +#: descenders (the parts of letters below the baseline, such as for y, +#: q, p etc.). This option controls the thickness of the gaps. It can +#: be either a unitless number in which case it is a fraction of the +#: underline thickness as specified in the font or it can have a +#: suffix of px for pixels or pt for points. Set to zero to disable +#: the gaps. Changing this option dynamically via reloading the config +#: or remote control is undefined. + +# text_composition_strategy platform + +#: Control how kitty composites text glyphs onto the background color. +#: The default value of platform tries for text rendering as close to +#: "native" for the platform kitty is running on as possible. + +#: A value of legacy uses the old (pre kitty 0.28) strategy for how +#: glyphs are composited. This will make dark text on light +#: backgrounds look thicker and light text on dark backgrounds +#: thinner. It might also make some text appear like the strokes are +#: uneven. + +#: You can fine tune the actual contrast curve used for glyph +#: composition by specifying up to two space-separated numbers for +#: this setting. + +#: The first number is the gamma adjustment, which controls the +#: thickness of dark text on light backgrounds. Increasing the value +#: will make text appear thicker. The default value for this is 1.0 on +#: Linux and 1.7 on macOS. Valid values are 0.01 and above. The result +#: is scaled based on the luminance difference between the background +#: and the foreground. Dark text on light backgrounds receives the +#: full impact of the curve while light text on dark backgrounds is +#: affected very little. + +#: The second number is an additional multiplicative contrast. It is +#: percentage ranging from 0 to 100. The default value is 0 on Linux +#: and 30 on macOS. + +#: If you wish to achieve similar looking thickness in light and dark +#: themes, a good way to experiment is start by setting the value to +#: 1.0 0 and use a dark theme. Then adjust the second parameter until +#: it looks good. Then switch to a light theme and adjust the first +#: parameter until the perceived thickness matches the dark theme. + +# text_fg_override_threshold 0 + +#: A setting to prevent low contrast between foreground and background +#: colors. Useful when working with applications that use colors that +#: do not contrast well with your preferred color scheme. The default +#: value is 0, which means no color overriding is performed. There are +#: two modes of operation: + +#: A value with the suffix ratio represents the minimum accepted +#: contrast ratio between the foreground and background color. +#: Possible values range from 0.0 ratio to 21.0 ratio. For example, to +#: meet WCAG level AA +#: +#: a value of 4.5 ratio can be provided. The algorithm is implemented +#: using HSLuv which enables it to change the +#: perceived lightness of a color just as much as needed without +#: really changing its hue and saturation. + +#: A value with the suffix % represents the minimum accepted +#: difference in luminance between the foreground and background +#: color, below which kitty will override the foreground color. It is +#: percentage ranging from 0 % to 100 %. If the difference in +#: luminance of the foreground and background is below this threshold, +#: the foreground color will be set to white if the background is dark +#: or black if the background is light. + +#: WARNING: Some programs use characters (such as block characters) +#: for graphics display and may expect to be able to set the +#: foreground and background to the same color (or similar colors). If +#: you see unexpected stripes, dots, lines, incorrect color, no color +#: where you expect color, or any kind of graphic display problem try +#: setting text_fg_override_threshold to 0 to see if this is the cause +#: of the problem or consider using the ratio mode of operation +#: described above instead of the % mode of operation. + +#: }}} + +#: Text cursor customization {{{ + +# cursor #cccccc + +#: Default text cursor color. If set to the special value none the +#: cursor will be rendered with a "reverse video" effect. Its color +#: will be the color of the text in the cell it is over and the text +#: will be rendered with the background color of the cell. Note that +#: if the program running in the terminal sets a cursor color, this +#: takes precedence. Also, the cursor colors are modified if the cell +#: background and foreground colors have very low contrast. Note that +#: some themes set this value, so if you want to override it, place +#: your value after the lines where the theme file is included. + +# cursor_text_color #111111 + +#: The color of text under the cursor. If you want it rendered with +#: the background color of the cell underneath instead, use the +#: special keyword: `background`. Note that if cursor is set to none +#: then this option is ignored. Note that some themes set this value, +#: so if you want to override it, place your value after the lines +#: where the theme file is included. + +# cursor_shape block + +#: The cursor shape can be one of block, beam, underline. Note that +#: when reloading the config this will be changed only if the cursor +#: shape has not been set by the program running in the terminal. This +#: sets the default cursor shape, applications running in the terminal +#: can override it. In particular, shell integration +#: in kitty sets +#: the cursor shape to beam at shell prompts. You can avoid this by +#: setting shell_integration to no-cursor. + +# cursor_shape_unfocused hollow + +#: Defines the text cursor shape when the OS window is not focused. +#: The unfocused cursor shape can be one of block, beam, underline, +#: hollow and unchanged (leave the cursor shape as it is). + +# cursor_beam_thickness 1.5 + +#: The thickness of the beam cursor (in pts). + +# cursor_underline_thickness 2.0 + +#: The thickness of the underline cursor (in pts). + +# cursor_blink_interval -1 + +#: The interval to blink the cursor (in seconds). Set to zero to +#: disable blinking. Negative values mean use system default. Note +#: that the minimum interval will be limited to repaint_delay. You can +#: also animate the cursor blink by specifying an easing function. For +#: example, setting this to option to 0.5 ease-in-out will cause the +#: cursor blink to be animated over a second, in the first half of the +#: second it will go from opaque to transparent and then back again +#: over the next half. You can specify different easing functions for +#: the two halves, for example: -1 linear ease-out. kitty supports all +#: the CSS easing functions . Note that turning on animations +#: uses extra power as it means the screen is redrawn multiple times +#: per blink interval. See also, cursor_stop_blinking_after. This +#: setting also controls blinking text, which blinks in exact rhythm +#: with the cursor. + +# cursor_stop_blinking_after 15.0 + +#: Stop blinking cursor after the specified number of seconds of +#: keyboard inactivity. Set to zero to never stop blinking. This +#: setting also controls blinking text, which blinks in exact rhythm +#: with the cursor. + +# cursor_trail 0 + +#: Set this to a value larger than zero to enable a "cursor trail" +#: animation. This is an animation that shows a "trail" following the +#: movement of the text cursor. It makes it easy to follow large +#: cursor jumps and makes for a cool visual effect of the cursor +#: zooming around the screen. The actual value of this option controls +#: when the animation is triggered. It is a number of milliseconds. +#: The trail animation only follows cursors that have stayed in their +#: position for longer than the specified number of milliseconds. This +#: prevents trails from appearing for cursors that rapidly change +#: their positions during UI updates in complex applications. See +#: cursor_trail_decay to control the animation speed and +#: cursor_trail_start_threshold to control when a cursor trail is +#: started. + +# cursor_trail_decay 0.1 0.4 + +#: Controls the decay times for the cursor trail effect when the +#: cursor_trail is enabled. This option accepts two positive float +#: values specifying the fastest and slowest decay times in seconds. +#: The first value corresponds to the fastest decay time (minimum), +#: and the second value corresponds to the slowest decay time +#: (maximum). The second value must be equal to or greater than the +#: first value. Smaller values result in a faster decay of the cursor +#: trail. Adjust these values to control how quickly the cursor trail +#: fades away. + +# cursor_trail_start_threshold 2 + +#: Set the distance threshold for starting the cursor trail. This +#: option accepts a positive integer value that represents the minimum +#: number of cells the cursor must move before the trail is started. +#: When the cursor moves less than this threshold, the trail is +#: skipped, reducing unnecessary cursor trail animation. + +# cursor_trail_color none + +#: Set the color of the cursor trail when cursor_trail is enabled. If +#: set to 'none' (the default), the cursor trail will use the cursor's +#: background color. Otherwise, specify a color value (e.g., #ff0000 +#: for red, or a named color like 'red'). This allows you to customize +#: the appearance of the cursor trail independently of the cursor +#: color. + +#: }}} + +#: Scrollback {{{ + +# scrollback_lines 2000 + +#: Number of lines of history to keep in memory for scrolling back. +#: Memory is allocated on demand. Negative numbers are (effectively) +#: infinite scrollback. Note that using very large scrollback is not +#: recommended as it can slow down performance of the terminal and +#: also use large amounts of RAM. Instead, consider using +#: scrollback_pager_history_size. Note that on config reload if this +#: is changed it will only affect newly created windows, not existing +#: ones. + +# scrollbar scrolled + +#: Control when the scrollbar is displayed. + +#: scrolled +#: means when the scrolling backwards has started. +#: hovered +#: means when the mouse is hovering on the right edge of the window. +#: scrolled-and-hovered +#: means when the mouse is over the scrollbar region *and* scrolling backwards has started. +#: always +#: means whenever any scrollback is present +#: never +#: means disable the scrollbar. + +# scrollbar_interactive yes + +#: If disabled, the scrollbar will not be controllable via th emouse +#: and all mouse events will pass through the scrollbar. + +# scrollbar_jump_on_click yes + +#: When enabled clicking in the scrollbar track will cause the scroll +#: position to jump to the clicked location, otherwise the scroll +#: position will only move towards the position by a single screenful, +#: which is how traditional scrollbars behave. + +# scrollbar_width 0.5 + +#: The width of the scroll bar in units of cell width. + +# scrollbar_hover_width 1 + +#: The width of the scroll bar when the mouse is hovering over it, in +#: units of cell width. + +# scrollbar_handle_opacity 0.5 + +#: The opacity of the scrollbar handle, 0 being fully transparent and +#: 1 being full opaque. + +# scrollbar_radius 0.3 + +#: The radius (curvature) of the scrollbar handle in units of cell +#: width. Should be less than scrollbar_width. + +# scrollbar_gap 0.1 + +#: The gap between the scrollbar and the window edge in units of cell +#: width. + +# scrollbar_min_handle_height 1 + +#: The minimum height of the scrollbar handle in units of cell height. +#: Prevents the handle from becoming too small when there is a lot of +#: scrollback. + +# scrollbar_hitbox_expansion 0.25 + +#: The extra area around the handle to allow easier grabbing of the +#: scollbar in units of cell width. + +# scrollbar_track_opacity 0 + +#: The opacity of the scrollbar track, 0 being fully transparent and 1 +#: being full opaque. + +# scrollbar_track_hover_opacity 0.1 + +#: The opacity of the scrollbar track when the mouse is over the +#: scrollbar, 0 being fully transparent and 1 being full opaque. + +# scrollbar_handle_color foreground + +#: The color of the scrollbar handle. A value of foreground means to +#: use the current foreground text color, a value of +#: selection_background means to use the current selection background +#: color. Also, you can use an arbitrary color, such as #12af59 or +#: red. + +# scrollbar_track_color foreground + +#: The color of the scrollbar track. A value of foreground means to +#: use the current foreground text color, a value of +#: selection_background means to use the current selection background +#: color. Also, you can use an arbitrary color, such as #12af59 or +#: red. + +# scrollback_pager less --chop-long-lines --RAW-CONTROL-CHARS +INPUT_LINE_NUMBER + +#: Program with which to view scrollback in a new window. The +#: scrollback buffer is passed as STDIN to this program. If you change +#: it, make sure the program you use can handle ANSI escape sequences +#: for colors and text formatting. INPUT_LINE_NUMBER in the command +#: line above will be replaced by an integer representing which line +#: should be at the top of the screen. Similarly CURSOR_LINE and +#: CURSOR_COLUMN will be replaced by the current cursor position or +#: set to 0 if there is no cursor, for example, when showing the last +#: command output. + +#: If you would rather use neovim to view the scrollback, use +#: something like this:: + +#: scrollback_pager nvim --cmd 'set eventignore=FileType' +'nnoremap q ZQ' +'call nvim_open_term(0, {})' +'set nomodified nolist' +'$' - + +#: The above works for neovim 0.12 and newer. There is also a +#: dedicated plugin kitty-scrollback.nvim +#: you can use +#: with more features that works with older neovim as well. + +# scrollback_pager_history_size 0 + +#: Separate scrollback history size (in MB), used only for browsing +#: the scrollback buffer with pager. This separate buffer is not +#: available for interactive scrolling but will be piped to the pager +#: program when viewing scrollback buffer in a separate window. The +#: current implementation stores the data in UTF-8, so approximately +#: 10000 lines per megabyte at 100 chars per line, for pure ASCII, +#: unformatted text. A value of zero or less disables this feature. +#: The maximum allowed size is 4GB. Note that on config reload if this +#: is changed it will only affect newly created windows, not existing +#: ones. + +# scrollback_fill_enlarged_window no + +#: Fill new space with lines from the scrollback buffer after +#: enlarging a window. + +# wheel_scroll_multiplier 5.0 + +#: Multiplier for the number of lines scrolled by the mouse wheel. +#: Note that this is only used for low precision scrolling devices, +#: not for high precision scrolling devices on platforms such as macOS +#: and Wayland. Use negative numbers to change scroll direction. See +#: also wheel_scroll_min_lines. + +# wheel_scroll_min_lines 1 + +#: The minimum number of lines scrolled by the mouse wheel. The scroll +#: multiplier wheel_scroll_multiplier only takes effect after it +#: reaches this number. Note that this is only used for low precision +#: scrolling devices like wheel mice that scroll by very small amounts +#: when using the wheel. With a negative number, the minimum number of +#: lines will always be added. + +# touch_scroll_multiplier 1.0 + +#: Multiplier for the number of lines scrolled by a touchpad. Note +#: that this is only used for high precision scrolling devices on +#: platforms such as macOS and Wayland. Use negative numbers to change +#: scroll direction. + +#: }}} + +#: Mouse {{{ + +# mouse_hide_wait 3.0 + +#: Hide mouse cursor after the specified number of seconds of the +#: mouse not being used. Set to zero to disable mouse cursor hiding. +#: Set to a negative value to hide the mouse cursor immediately when +#: typing text. Disabled by default on macOS as getting it to work +#: robustly with the ever-changing sea of bugs that is Cocoa is too +#: much effort. + +#: By default, once the cursor is hidden, it is immediately unhidden +#: on any further mouse events. + +#: Two formats are supported: +#: - +#: - + +#: To change the unhide behavior, the optional parameters , , and may be set. + +#: +#: Waits for the specified number of seconds after mouse events before unhiding the +#: mouse cursor. Set to zero to unhide mouse cursor immediately on mouse activity. +#: This is useful to prevent the mouse cursor from unhiding on accidental swipes on +#: the trackpad. + +#: +#: Sets the threshold of mouse activity required to unhide the mouse cursor, when +#: the option is non-zero. When is zero, this has no +#: effect. + +#: For example, if is 40 and is 2.5, when kitty +#: detects a mouse event, it records the number of mouse events in the next 2.5 +#: seconds, and checks if that exceeds 40 * 2.5 = 100. If it does, then the mouse +#: cursor is unhidden, otherwise nothing happens. + +#: +#: Controls what mouse events may unhide the mouse cursor. If enabled, both scroll +#: and movement events may unhide the cursor. If disabled, only mouse movements can +#: unhide the cursor. + +#: Examples of valid values: +#: - 0.0 +#: - 1.0 +#: - -1.0 +#: - 0.1 3.0 40 yes + +# url_color #0087bd +# url_style curly + +#: The color and style for highlighting URLs on mouse-over. url_style +#: can be one of: none, straight, double, curly, dotted, dashed. + +# open_url_with default + +#: The program to open clicked URLs. The special value default will +#: first look for any URL handlers defined via the open_actions +#: facility and if non +#: are found, it will use the Operating System's default URL handler +#: (open on macOS and xdg-open on Linux). + +# url_prefixes file ftp ftps gemini git gopher http https irc ircs kitty mailto news sftp ssh + +#: The set of URL prefixes to look for when detecting a URL under the +#: mouse cursor. + +# detect_urls yes + +#: Detect URLs under the mouse. Detected URLs are highlighted with an +#: underline and the mouse cursor becomes a hand over them. Even if +#: this option is disabled, URLs are still clickable. See also the +#: underline_hyperlinks option to control how hyperlinks (as opposed +#: to plain text URLs) are displayed. + +# url_excluded_characters + +#: Additional characters to be disallowed from URLs, when detecting +#: URLs under the mouse cursor. By default, all characters that are +#: legal in URLs are allowed. Additionally, newlines are allowed (but +#: stripped). This is to accommodate programs such as mutt that add +#: hard line breaks even for continued lines. \n can be added to this +#: option to disable this behavior. Special characters can be +#: specified using backslash escapes, to specify a backslash use a +#: double backslash. + +# show_hyperlink_targets no + +#: When the mouse hovers over a terminal hyperlink, show the actual +#: URL that will be activated when the hyperlink is clicked. + +# underline_hyperlinks hover + +#: Control how hyperlinks are underlined. They can either be +#: underlined on mouse hover, always (i.e. permanently underlined) or +#: never which means that kitty will not apply any underline styling +#: to hyperlinks. Note that the value of always only applies to real +#: (OSC 8) hyperlinks not text that is detected to be a URL on mouse +#: hover. Uses the url_style and url_color settings for the underline +#: style. Note that reloading the config and changing this value +#: to/from always will only affect text subsequently received by +#: kitty. + +# copy_on_select no + +#: Copy to clipboard or a private buffer on select. With this set to +#: clipboard, selecting text with the mouse will cause the text to be +#: copied to clipboard. Useful on platforms such as macOS that do not +#: have the concept of primary selection. You can instead specify a +#: name such as a1 to copy to a private kitty buffer. Map a shortcut +#: with the paste_from_buffer action to paste from this private +#: buffer. For example:: + +#: copy_on_select a1 +#: map shift+cmd+v paste_from_buffer a1 + +#: Note that copying to the clipboard is a security risk, as all +#: programs, including websites open in your browser can read the +#: contents of the system clipboard. + +# clear_selection_on_clipboard_loss no + +#: When the contents of the clipboard no longer reflect the current +#: selection, clear it. This is primarily useful on platforms such as +#: Linux where selecting text automatically copies it to a special +#: "primary selection" clipboard or if you have copy_on_select set to +#: clipboard. + +#: Note that on macOS the system does not provide notifications when +#: the clipboard owner is changed, so there, copying to clipboard in a +#: non-kitty application will not clear selections even if +#: copy_on_select is enabled. + +# paste_actions quote-urls-at-prompt,confirm + +#: A comma separated list of actions to take when pasting text into +#: the terminal. The supported paste actions are: + +#: quote-urls-at-prompt: +#: If the text being pasted is a URL and the cursor is at a shell prompt, +#: automatically quote the URL (needs shell_integration). +#: replace-dangerous-control-codes +#: Replace dangerous control codes from pasted text, without confirmation. +#: replace-newline +#: Replace the newline character from pasted text, without confirmation. +#: confirm: +#: Confirm the paste if the text to be pasted contains any terminal control codes +#: as this can be dangerous, leading to code execution if the shell/program running +#: in the terminal does not properly handle these. +#: confirm-if-large +#: Confirm the paste if it is very large (larger than 16KB) as pasting +#: large amounts of text into shells can be very slow. +#: filter: +#: Run the filter_paste() function from the file paste-actions.py in +#: the kitty config directory on the pasted text. The text returned by the +#: function will be actually pasted. +#: no-op: +#: Has no effect. + +# strip_trailing_spaces never + +#: Remove spaces at the end of lines when copying to clipboard. A +#: value of smart will do it when using normal selections, but not +#: rectangle selections. A value of always will always do it. + +# select_by_word_characters @-./_~?&=%+# + +#: Characters considered part of a word when double clicking. In +#: addition to these characters any character that is marked as an +#: alphanumeric character in the Unicode database will be matched. + +# select_by_word_characters_forward + +#: Characters considered part of a word when extending the selection +#: forward on double clicking. In addition to these characters any +#: character that is marked as an alphanumeric character in the +#: Unicode database will be matched. + +#: If empty (default) select_by_word_characters will be used for both +#: directions. + +# click_interval -1.0 + +#: The interval between successive clicks to detect double/triple +#: clicks (in seconds). Negative numbers will use the system default +#: instead, if available, or fallback to 0.5. + +# focus_follows_mouse no + +#: Set the active window to the window under the mouse when moving the +#: mouse around. On macOS, this will also cause the OS Window under +#: the mouse to be focused automatically when the mouse enters it. + +# pointer_shape_when_grabbed arrow + +#: The shape of the mouse pointer when the program running in the +#: terminal grabs the mouse. + +# default_pointer_shape beam + +#: The default shape of the mouse pointer. + +# pointer_shape_when_dragging beam crosshair + +#: The default shape of the mouse pointer when dragging across text. +#: The optional second value sets the shape when dragging in +#: rectangular selection mode. + +#: Mouse actions {{{ + +#: Mouse buttons can be mapped to perform arbitrary actions. The +#: syntax is: + +#: .. code-block:: none + +#: mouse_map button-name event-type modes action + +#: Where button-name is one of left, middle, right, b1 ... b8 with +#: added keyboard modifiers. For example: ctrl+shift+left refers to +#: holding the Ctrl+Shift keys while clicking with the left mouse +#: button. The value b1 ... b8 can be used to refer to up to eight +#: buttons on a mouse. + +#: event-type is one of press, release, doublepress, triplepress, +#: click, doubleclick. modes indicates whether the action is performed +#: when the mouse is grabbed by the program running in the terminal, +#: or not. The values are grabbed or ungrabbed or a comma separated +#: combination of them. grabbed refers to when the program running in +#: the terminal has requested mouse events. Note that the click and +#: double click events have a delay of click_interval to disambiguate +#: from double and triple presses. + +#: You can run kitty with the kitty --debug-input command line option +#: to see mouse events. See the builtin actions below to get a sense +#: of what is possible. + +#: If you want to unmap a button, map it to nothing. For example, to +#: disable opening of URLs with a plain click:: + +#: mouse_map left click ungrabbed + +#: See all the mappable actions including mouse actions here +#: . + +#: .. note:: +#: Once a selection is started, releasing the button that started it will +#: automatically end it and no release event will be dispatched. + +# clear_all_mouse_actions no + +#: Remove all mouse action definitions up to this point. Useful, for +#: instance, to remove the default mouse actions. + +#: Click the link under the mouse or move the cursor + +# mouse_map left click ungrabbed mouse_handle_click selection link prompt + +#:: First check for a selection and if one exists do nothing. Then +#:: check for a link under the mouse cursor and if one exists, click +#:: it. Finally check if the click happened at the current shell +#:: prompt and if so, move the cursor to the click location. Note +#:: that this requires shell integration +#:: to work. + +#: Click the link under the mouse or move the cursor even when grabbed + +# mouse_map shift+left click grabbed,ungrabbed mouse_handle_click selection link prompt + +#:: Same as above, except that the action is performed even when the +#:: mouse is grabbed by the program running in the terminal. + +#: Click the link under the mouse cursor + +# mouse_map ctrl+shift+left release grabbed,ungrabbed mouse_handle_click link + +#:: Variant with Ctrl+Shift is present because the simple click based +#:: version has an unavoidable delay of click_interval, to +#:: disambiguate clicks from double clicks. + +#: Discard press event for link click + +# mouse_map ctrl+shift+left press grabbed discard_event + +#:: Prevent this press event from being sent to the program that has +#:: grabbed the mouse, as the corresponding release event is used to +#:: open a URL. + +#: Paste from the primary selection + +# mouse_map middle release ungrabbed paste_from_selection + +#: Start selecting text + +# mouse_map left press ungrabbed mouse_selection normal + +#: Start selecting text in a rectangle + +# mouse_map ctrl+alt+left press ungrabbed mouse_selection rectangle + +#: Select a word + +# mouse_map left doublepress ungrabbed mouse_selection word + +#: Select a line + +# mouse_map left triplepress ungrabbed mouse_selection line + +#: Select line from point + +# mouse_map ctrl+alt+left triplepress ungrabbed mouse_selection line_from_point + +#:: Select from the clicked point to the end of the line. If you +#:: would like to select the word at the point and then extend to the +#:: rest of the line, change `line_from_point` to +#:: `word_and_line_from_point`. + +#: Extend the current selection + +# mouse_map right press ungrabbed mouse_selection extend + +#:: If you want only the end of the selection to be moved instead of +#:: the nearest boundary, use move-end instead of extend. + +#: Paste from the primary selection even when grabbed + +# mouse_map shift+middle release ungrabbed,grabbed paste_selection +# mouse_map shift+middle press grabbed discard_event + +#: Start selecting text even when grabbed + +# mouse_map shift+left press ungrabbed,grabbed mouse_selection normal + +#: Start selecting text in a rectangle even when grabbed + +# mouse_map ctrl+shift+alt+left press ungrabbed,grabbed mouse_selection rectangle + +#: Select a word even when grabbed + +# mouse_map shift+left doublepress ungrabbed,grabbed mouse_selection word + +#: Select a line even when grabbed + +# mouse_map shift+left triplepress ungrabbed,grabbed mouse_selection line + +#: Select line from point even when grabbed + +# mouse_map ctrl+shift+alt+left triplepress ungrabbed,grabbed mouse_selection line_from_point + +#:: Select from the clicked point to the end of the line even when +#:: grabbed. If you would like to select the word at the point and +#:: then extend to the rest of the line, change `line_from_point` to +#:: `word_and_line_from_point`. + +#: Extend the current selection even when grabbed + +# mouse_map shift+right press ungrabbed,grabbed mouse_selection extend + +#: Show clicked command output in pager + +# mouse_map ctrl+shift+right press ungrabbed mouse_show_command_output + +#:: Requires shell integration +#:: to work. + +#: }}} + +#: }}} + +#: Performance tuning {{{ + +# repaint_delay 10 + +#: Delay between screen updates (in milliseconds). Decreasing it, +#: increases frames-per-second (FPS) at the cost of more CPU usage. +#: The default value yields ~100 FPS which is more than sufficient for +#: most uses. Note that to actually achieve 100 FPS, you have to +#: either set sync_to_monitor to no or use a monitor with a high +#: refresh rate. Also, to minimize latency when there is pending input +#: to be processed, this option is ignored. + +# input_delay 3 + +#: Delay before input from the program running in the terminal is +#: processed (in milliseconds). Note that decreasing it will increase +#: responsiveness, but also increase CPU usage and might cause flicker +#: in full screen programs that redraw the entire screen on each loop, +#: because kitty is so fast that partial screen updates will be drawn. +#: This setting is ignored when the input buffer is almost full. + +# sync_to_monitor yes + +#: Sync screen updates to the refresh rate of the monitor. This +#: prevents screen tearing +#: when scrolling. +#: However, it limits the rendering speed to the refresh rate of your +#: monitor. With a very high speed mouse/high keyboard repeat rate, +#: you may notice some slight input latency. If so, set this to no. + +#: }}} + +#: Terminal bell {{{ + +# enable_audio_bell yes + +#: The audio bell. Useful to disable it in environments that require +#: silence. + +# visual_bell_duration 0.0 + +#: The visual bell duration (in seconds). Flash the screen when a bell +#: occurs for the specified number of seconds. Set to zero to disable. +#: The flash is animated, fading in and out over the specified +#: duration. The easing function used for the fading can be +#: controlled. For example, 2.0 linear will casuse the flash to fade +#: in and out linearly. The default if unspecified is to use ease-in- +#: out which fades slowly at the start, middle and end. You can +#: specify different easing functions for the fade-in and fade-out +#: parts, like this: 2.0 ease-in linear. kitty supports all the CSS +#: easing functions . + +# visual_bell_color none + +#: The color used by visual bell. Set to none will fall back to +#: selection background color. If you feel that the visual bell is too +#: bright, you can set it to a darker color. + +# window_alert_on_bell yes + +#: Request window attention on bell. Makes the dock icon bounce on +#: macOS or the taskbar flash on Linux. + +# bell_on_tab "🔔 " + +#: Some text or a Unicode symbol to show on the tab if a window in the +#: tab that does not have focus has a bell. If you want to use leading +#: or trailing spaces, surround the text with quotes. See +#: tab_title_template for how this is rendered. + +#: For backwards compatibility, values of yes, y and true are +#: converted to the default bell symbol and no, n, false and none are +#: converted to the empty string. + +# command_on_bell none + +#: Program to run when a bell occurs. The environment variable +#: KITTY_CHILD_CMDLINE can be used to get the program running in the +#: window in which the bell occurred. + +# bell_path none + +#: Path to a sound file to play as the bell sound. If set to none, the +#: system default bell sound is used. Must be in a format supported by +#: the operating systems sound API, such as WAV or OGA on Linux +#: (libcanberra) or AIFF, MP3 or WAV on macOS (NSSound). Relative +#: paths are resolved with respect to the kitty config directory. + +# linux_bell_theme __custom + +#: The XDG Sound Theme kitty will use to play the bell sound. On +#: Wayland, when the compositor supports it, it is asked to play the +#: system default bell sound, and this setting has no effect. Note +#: that Hyprland claims to support this protocol, but does not +#: actually play a sound +#: . This setting +#: defaults to the custom theme name specified in the XDG Sound theme +#: specification , falling back to the default +#: freedesktop theme if it does not exist. To change your sound theme +#: desktop wide, create +#: :file:~/.local/share/sounds/__custom/index.theme` with the +#: contents: + +#: [Sound Theme] + +#: Inherits=name-of-the-sound-theme-you-want-to-use + +#: Replace name-of-the-sound-theme-you-want-to-use with the actual +#: theme name. Now all compliant applications should use sounds from +#: this theme. + +#: }}} + +#: Window layout {{{ + + remember_window_size yes + initial_window_width 640 + initial_window_height 400 + +#: If enabled, the OS Window size will be remembered so that new +#: instances of kitty will have the same size as the previous +#: instance. If disabled, the OS Window will initially have size +#: configured by initial_window_width/height, in pixels. You can use a +#: suffix of "c" on the width/height values to have them interpreted +#: as number of cells instead of pixels. + +# remember_window_position no + +#: If enabled, the OS Window position will be remembered so that new +#: instances of kitty will have the same position as the previous +#: instance. If disabled, the OS Window will be placed by the window +#: manager. Note that remembering of position only works if the +#: underlying desktop environment/window manager supports it. It never +#: works on Wayland. See also kitty --position to specify the position +#: when launching kitty. + +enabled_layouts grid,* + +#: The enabled window layouts. A comma separated list of layout names. +#: The special value all means all layouts. The first listed layout +#: will be used as the startup layout. Default configuration is all +#: layouts in alphabetical order. For a list of available layouts, see +#: the layouts . + +# window_resize_step_cells 2 +# window_resize_step_lines 2 + +#: The step size (in units of cell width/cell height) to use when +#: resizing kitty windows in a layout with the shortcut +#: start_resizing_window. The cells value is used for horizontal +#: resizing, and the lines value is used for vertical resizing. + +# window_border_width 0.5pt + +#: The width of window borders. Can be either in pixels (px) or pts +#: (pt). Values in pts will be rounded to the nearest number of pixels +#: based on screen resolution. If not specified, the unit is assumed +#: to be pts. Note that borders are displayed only when more than one +#: window is visible. They are meant to separate multiple windows. + +# draw_minimal_borders yes + +#: Draw only the minimum borders needed. This means that only the +#: borders that separate the window from a neighbor are drawn. Note +#: that setting a non-zero window_margin_width overrides this and +#: causes all borders to be drawn. + +# draw_window_borders_for_single_window no + +#: Draw borders around a window even when there is only a single +#: window visible. When enabled and there is only a single window, +#: full borders are drawn around it (as if draw_minimal_borders is +#: false). The border will show in the active color when the window is +#: focused and the OS window has focus, and in the inactive color when +#: the OS window loses focus. This provides a clear visual indicator +#: of whether the kitty window is focused. When there are multiple +#: windows visible, this option has no effect and normal border +#: drawing rules apply. + +# window_margin_width 0 + +#: The window margin (in pts) (blank area outside the border). A +#: single value sets all four sides. Two values set the vertical and +#: horizontal sides. Three values set top, horizontal and bottom. Four +#: values set top, right, bottom and left. + +# single_window_margin_width -1 + +#: The window margin to use when only a single window is visible (in +#: pts). Negative values will cause the value of window_margin_width +#: to be used instead. A single value sets all four sides. Two values +#: set the vertical and horizontal sides. Three values set top, +#: horizontal and bottom. Four values set top, right, bottom and left. + +# window_padding_width 0 + +#: The window padding (in pts) (blank area between the text and the +#: window border). A single value sets all four sides. Two values set +#: the vertical and horizontal sides. Three values set top, horizontal +#: and bottom. Four values set top, right, bottom and left. + +# single_window_padding_width -1 + +#: The window padding to use when only a single window is visible (in +#: pts). Negative values will cause the value of window_padding_width +#: to be used instead. A single value sets all four sides. Two values +#: set the vertical and horizontal sides. Three values set top, +#: horizontal and bottom. Four values set top, right, bottom and left. + +# placement_strategy center + +#: When the window size is not an exact multiple of the cell size, the +#: cell area of the terminal window will have some extra padding on +#: the sides. You can control how that padding is distributed with +#: this option. Using a value of center means the cell area will be +#: placed centrally. A value of top-left means the padding will be +#: only at the bottom and right edges. The value can be one of: top- +#: left, top, top-right, left, center, right, bottom-left, bottom, +#: bottom-right. + +# active_border_color #00ff00 + +#: The color for the border of the active window. Set this to none to +#: not draw borders around the active window. + +# inactive_border_color #cccccc + +#: The color for the border of inactive windows. + +# bell_border_color #ff5a00 + +#: The color for the border of inactive windows in which a bell has +#: occurred. + +# inactive_text_alpha 1.0 + +#: Fade the text in inactive windows by the specified amount (a number +#: between zero and one, with zero being fully faded). + +# hide_window_decorations no + +#: Hide the window decorations (title-bar and window borders) with +#: yes. On macOS, titlebar-only and titlebar-and-corners can be used +#: to only hide the titlebar and the rounded corners. Whether this +#: works and exactly what effect it has depends on the window +#: manager/operating system. Note that the effects of changing this +#: option when reloading config are undefined. When using titlebar- +#: only, it is useful to also set window_margin_width and +#: placement_strategy to prevent the rounded corners from clipping +#: text. Or use titlebar-and-corners. + +#window_logo_path none + +#: Path to a logo image. Must be in PNG/JPEG/WEBP/GIF/TIFF/BMP format. +#: Relative paths are interpreted relative to the kitty config +#: directory. The logo is displayed in a corner of every kitty window. +#: The position is controlled by window_logo_position. Individual +#: windows can be configured to have different logos either using the +#: launch action or the remote control +#: facility. + +# window_logo_position bottom-right + +#: Where to position the window logo in the window. The value can be +#: one of: top-left, top, top-right, left, center, right, bottom-left, +#: bottom, bottom-right. + +# window_logo_alpha 0.5 + +#: The amount the logo should be faded into the background. With zero +#: being fully faded and one being fully opaque. + +# window_logo_scale 100 + +#: The percentage (0-100] of the window size to which the logo should +#: scale. Using a single number means the logo is scaled to that +#: percentage of the shortest window dimension, while preserving +#: aspect ratio of the logo image. + +#: Using two numbers means the width and height of the logo are scaled +#: to the respective percentage of the window's width and height. + +#: Using zero as the percentage disables scaling in that dimension. A +#: single zero (the default) disables all scaling of the window logo. + +# resize_debounce_time 0.1 0.5 + +#: The time to wait (in seconds) before asking the program running in +#: kitty to resize and redraw the screen during a live resize of the +#: OS window, when no new resize events have been received, i.e. when +#: resizing is either paused or finished. On platforms such as macOS, +#: where the operating system sends events corresponding to the start +#: and end of a live resize, the second number is used for redraw- +#: after-pause since kitty can distinguish between a pause and end of +#: resizing. On such systems the first number is ignored and redraw is +#: immediate after end of resize. On other systems only the first +#: number is used so that kitty is "ready" quickly after the end of +#: resizing, while not also continuously redrawing, to save energy. + +# resize_in_steps no + +#: Resize the OS window in steps as large as the cells, instead of +#: with the usual pixel accuracy. Combined with initial_window_width +#: and initial_window_height in number of cells, this option can be +#: used to keep the margins as small as possible when resizing the OS +#: window. Note that this does not currently work on Wayland. + +# visual_window_select_characters 1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ + +#: The list of characters for visual window selection. For example, +#: for selecting a window to focus on with focus_visible_window. The +#: value should be a series of unique numbers or alphabets, case +#: insensitive, from the set 0-9A-Z\-=[];',./\\`. Specify your +#: preference as a string of characters. + +# confirm_os_window_close -1 + +#: Ask for confirmation when closing an OS window or a tab with at +#: least this number of kitty windows in it by window manager (e.g. +#: clicking the window close button or pressing the operating system +#: shortcut to close windows) or by the close_tab action. A value of +#: zero disables confirmation. This confirmation also applies to +#: requests to quit the entire application (all OS windows, via the +#: quit action). Negative values are converted to positive ones, +#: however, with shell_integration enabled, using negative values +#: means windows sitting at a shell prompt are not counted, only +#: windows where some command is currently running. You can also have +#: backgrounded jobs prevent closing, by adding count-background to +#: the setting, for example: -1 count-background. Note that if you +#: want confirmation when closing individual windows, you can map the +#: close_window_with_confirmation action. + +#: }}} + +#: Tab bar {{{ + +# tab_bar_edge bottom + +#: The edge to show the tab bar on, top or bottom. + +# tab_bar_margin_width 0.0 + +#: The margin to the left and right of the tab bar (in pts). + +# tab_bar_margin_height 0.0 0.0 + +#: The margin above and below the tab bar (in pts). The first number +#: is the margin between the edge of the OS Window and the tab bar. +#: The second number is the margin between the tab bar and the +#: contents of the current tab. + +# tab_bar_style fade + +#: The tab bar style, can be one of: + +#: fade +#: Each tab's edges fade into the background color. (See also tab_fade) +#: slant +#: Tabs look like the tabs in a physical file. +#: separator +#: Tabs are separated by a configurable separator. (See also +#: tab_separator) +#: powerline +#: Tabs are shown as a continuous line with "fancy" separators. +#: (See also tab_powerline_style) +#: custom +#: A user-supplied Python function called draw_tab is loaded from the file +#: tab_bar.py in the kitty config directory. For examples of how to +#: write such a function, see the functions named draw_tab_with_* in +#: kitty's source code: kitty/tab_bar.py. See also +#: this discussion +#: for examples from kitty users. +#: hidden +#: The tab bar is hidden. If you use this, you might want to create +#: a mapping for the select_tab action which presents you with a list of +#: tabs and allows for easy switching to a tab. + +# tab_bar_filter + +#: A search expression . Only tabs that match this expression will +#: be shown in the tab bar. The currently active tab is always shown, +#: regardless of whether it matches or not. When using this option, +#: the tab bar may be displayed with less tabs than specified in +#: tab_bar_min_tabs, as evaluating the filter is expensive and is done +#: only at display time. This is most useful when using sessions +#: . An expression of +#: session:~ or session:^$ will show only tabs that belong to the +#: current session or no session. The various tab navigation actions +#: such as goto_tab, next_tab, previous_tab, etc. are automatically +#: restricted to work only on matching tabs. + +# tab_bar_align left + +#: The horizontal alignment of the tab bar, can be one of: left, +#: center, right. + +# tab_bar_min_tabs 2 + +#: The minimum number of tabs that must exist before the tab bar is +#: shown. + +# tab_switch_strategy previous + +#: The algorithm to use when switching to a tab when the current tab +#: is closed. The default of previous will switch to the last used +#: tab. A value of left will switch to the tab to the left of the +#: closed tab. A value of right will switch to the tab to the right of +#: the closed tab. A value of last will switch to the right-most tab. + +# tab_fade 0.25 0.5 0.75 1 + +#: Control how each tab fades into the background when using fade for +#: the tab_bar_style. Each number is an alpha (between zero and one) +#: that controls how much the corresponding cell fades into the +#: background, with zero being no fade and one being full fade. You +#: can change the number of cells used by adding/removing entries to +#: this list. + +# tab_separator " ┇" + +#: The separator between tabs in the tab bar when using separator as +#: the tab_bar_style. + +# tab_powerline_style angled + +#: The powerline separator style between tabs in the tab bar when +#: using powerline as the tab_bar_style, can be one of: angled, +#: slanted, round. + +# tab_activity_symbol none + +#: Some text or a Unicode symbol to show on the tab if a window in the +#: tab that does not have focus has some activity. If you want to use +#: leading or trailing spaces, surround the text with quotes. See +#: tab_title_template for how this is rendered. + +# tab_title_max_length 0 + +#: The maximum number of cells that can be used to render the text in +#: a tab. A value of zero means that no limit is applied. + +# tab_title_template "{fmt.fg.red}{bell_symbol}{activity_symbol}{fmt.fg.tab}{tab.last_focused_progress_percent}{title}" + +#: A template to render the tab title. The default just renders the +#: title with optional symbols for bell and activity. If you wish to +#: include the tab-index as well, use something like: {index}:{title}. +#: Useful if you have shortcuts mapped for goto_tab N. If you prefer +#: to see the index as a superscript, use {sup.index}. All data +#: available is: + +#: title +#: The current tab title. +#: index +#: The tab index usable with goto_tab N goto_tab shortcuts. +#: layout_name +#: The current layout name. +#: session_name +#: The name of the kitty session file from which this tab was created, if any. +#: active_session_name +#: The name of the kitty session file from which the active window in this tab was created, if any. +#: num_windows +#: The number of windows in the tab. +#: num_window_groups +#: The number of window groups (a window group is a window and all of its overlay windows) in the tab. +#: tab.active_wd +#: The working directory of the currently active window in the tab +#: (expensive, requires syscall). Use tab.active_oldest_wd to get +#: the directory of the oldest foreground process rather than the newest. +#: tab.active_exe +#: The name of the executable running in the foreground of the currently +#: active window in the tab (expensive, requires syscall). Use +#: tab.active_oldest_exe for the oldest foreground process. +#: max_title_length +#: The maximum title length available. +#: keyboard_mode +#: The name of the current keyboard mode or the empty string if no keyboard mode is active. +#: tab.last_focused_progress_percent +#: If a command running in a window reports the progress for a task, show this progress as a percentage +#: from the most recently focused window in the tab. Empty string if no progress is reported. +#: tab.progress_percent +#: If a command running in a window reports the progress for a task, show this progress as a percentage +#: from all windows in the tab, averaged. Empty string is no progress is reported. +#: custom +#: This will call a function named draw_title(data) from the file tab_bar.py placed in +#: the kitty config directory. The function will be passed a dictionary of data, the same data that +#: can be used in this template. It can then perform arbitrarily complex processing and return a string. +#: For example: tab_title_template "{custom}" will use the output of the function as the tab title. +#: Any print statements in the draw_title() will print to the STDOUT of the kitty process, useful +#: for debugging. + + +#: Note that formatting is done by Python's string formatting +#: machinery, so you can use, for instance, {layout_name[:2].upper()} +#: to show only the first two letters of the layout name, upper-cased. +#: If you want to style the text, you can use styling directives, for +#: example: +#: `{fmt.fg.red}red{fmt.fg.tab}normal{fmt.bg._00FF00}greenbg{fmt.bg.tab}`. +#: Similarly, for bold and italic: +#: `{fmt.bold}bold{fmt.nobold}normal{fmt.italic}italic{fmt.noitalic}`. +#: The 256 eight terminal colors can be used as `fmt.fg.color0` +#: through `fmt.fg.color255`. Note that for backward compatibility, if +#: {bell_symbol} or {activity_symbol} are not present in the template, +#: they are prepended to it. + +# active_tab_title_template none + +#: Template to use for active tabs. If not specified falls back to +#: tab_title_template. + +# active_tab_foreground #000 +# active_tab_background #eee +# active_tab_font_style bold-italic +# inactive_tab_foreground #444 +# inactive_tab_background #999 +# inactive_tab_font_style normal + +#: Tab bar colors and styles. + +# tab_bar_background none + +#: Background color for the tab bar. Defaults to using the terminal +#: background color. + +# tab_bar_margin_color none + +#: Color for the tab bar margin area. Defaults to using the terminal +#: background color for margins above and below the tab bar. For side +#: margins the default color is chosen to match the background color +#: of the neighboring tab. + +#: }}} + +#: Color scheme {{{ + +# foreground #dddddd +# background #000000 + +#: The foreground and background colors. + +#background_opacity 0.5 + +#: The opacity of the terminal background color. A number between zero +#: and one, where one is opaque and zero is fully transparent. This +#: will only work if supported by the OS (for instance, when using a +#: compositor under X11). Note that it only sets the background +#: color's opacity in cells that have the same background color as the +#: default terminal background, so that things like the status bar in +#: vim, powerline prompts, etc. still look good. But it means that if +#: you use a color theme with a background color in your editor, it +#: will not be rendered as transparent. Instead you should change the +#: default background color in your kitty config and not use a +#: background color in the editor color scheme. Or use the escape +#: codes to set the terminals default colors in a shell script to +#: launch your editor. See also transparent_background_colors. Be +#: aware that using a value less than 1.0 is a (possibly significant) +#: performance hit. When using a low value for this setting, it is +#: desirable that you set the background color to a color the matches +#: the general color of the desktop background, for best text +#: rendering. Note also, that this setting does not apply to the +#: background_image, if any. The background image can itself have +#: transparency via its alpha channel if desired, and that will be +#: respected. + +#: If you want to dynamically change transparency of windows, set +#: dynamic_background_opacity to yes (this is off by default as it has +#: a performance cost). Changing this option when reloading the config +#: will only work if dynamic_background_opacity was enabled in the +#: original config. + +# background_blur 0 + +#: Set to a positive value to enable background blur (blurring of the +#: visuals behind a transparent window) on platforms that support it. +#: Only takes effect when background_opacity is less than one. On +#: macOS, this will also control the blur radius (amount of blurring). +#: Setting it to too high a value will cause severe performance issues +#: and/or rendering artifacts. Usually, values up to 64 work well. +#: Note that this might cause performance issues, depending on how the +#: platform implements it, so use with care. Currently supported on +#: macOS and KDE. + +# transparent_background_colors #292E42@0.7 #2e3c64@0.9 + +#: A space separated list of upto 7 colors, with opacity. When the +#: background color of a cell matches one of these colors, it is +#: rendered semi-transparent using the specified opacity. + +#: Useful in more complex UIs like editors where you could want more +#: than a single background color to be rendered as transparent, for +#: instance, for a cursor highlight line background or a highlighted +#: block. Terminal applications can set this color using The kitty +#: color control escape code. + +#: The syntax for specifying colors is: color@opacity, where the +#: @opacity part is optional. When unspecified, the value of +#: background_opacity is used. For example:: + +#: transparent_background_colors red@0.5 #00ff00@0.3 + +#: Note that you must also set background_opacity to something less +#: than 1 for this setting to work properly. + +dynamic_background_opacity yes + +#: Allow changing of the background_opacity dynamically, using either +#: keyboard shortcuts (increase_background_opacity and +#: decrease_background_opacity) or the remote control facility. +#: Changing this option by reloading the config is not supported. + +# background_image none + +#: Path to a background image. Must be in PNG/JPEG/WEBP/TIFF/GIF/BMP +#: format. Note that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_image_layout tiled + +#: Whether to tile, scale or clamp the background image. The value can +#: be one of tiled, mirror-tiled, scaled, clamped, centered or +#: cscaled. The scaled and cscaled values scale the image to the +#: window size, with cscaled preserving the image aspect ratio. Note +#: that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_image_linear no + +#: When background image is scaled, whether linear interpolation +#: should be used. Note that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_tint 0.0 + +#: How much to tint the background image by the background color. This +#: option makes it easier to read the text. Tinting is done using the +#: current background color for each window. This option applies only +#: if background_image is set. Note that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_tint_gaps 1.0 + +#: How much to tint the background image at the window gaps by the +#: background color, after applying background_tint. Since this is +#: multiplicative with background_tint, it can be used to lighten the +#: tint over the window gaps for a *separated* look. Note that when +#: using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# dim_opacity 0.4 + +#: How much to dim text that has the DIM/FAINT attribute set. One +#: means no dimming and zero means fully dimmed (i.e. invisible). + +# selection_foreground #000000 +# selection_background #fffacd + +#: The foreground and background colors for text selected with the +#: mouse. Setting both of these to none will cause a "reverse video" +#: effect for selections, where the selection will be the cell text +#: color and the text will become the cell background color. Setting +#: only selection_foreground to none will cause the foreground color +#: to be used unchanged. Note that these colors can be overridden by +#: the program running in the terminal. + +#: The color table {{{ + +#: The 256 terminal colors. There are 8 basic colors, each color has a +#: dull and bright version, for the first 16 colors. You can set the +#: remaining 240 colors as color16 to color255. + +# color0 #000000 +# color8 #767676 + +#: black + +# color1 #cc0403 +# color9 #f2201f + +#: red + +# color2 #19cb00 +# color10 #23fd00 + +#: green + +# color3 #cecb00 +# color11 #fffd00 + +#: yellow + +# color4 #0d73cc +# color12 #1a8fff + +#: blue + +# color5 #cb1ed1 +# color13 #fd28ff + +#: magenta + +# color6 #0dcdcd +# color14 #14ffff + +#: cyan + +# color7 #dddddd +# color15 #ffffff + +#: white + +# mark1_foreground black + +#: Color for marks of type 1 + +# mark1_background #98d3cb + +#: Color for marks of type 1 (light steel blue) + +# mark2_foreground black + +#: Color for marks of type 2 + +# mark2_background #f2dcd3 + +#: Color for marks of type 1 (beige) + +# mark3_foreground black + +#: Color for marks of type 3 + +# mark3_background #f274bc + +#: Color for marks of type 3 (violet) + +#: }}} + +#: }}} + +#: Advanced {{{ + +# shell . + +#: The shell program to execute. The default value of . means to use +#: the value of of the SHELL environment variable or if unset, +#: whatever shell is set as the default shell for the current user. +#: Note that on macOS if you change this, you might need to add +#: --login and --interactive to ensure that the shell starts in +#: interactive mode and reads its startup rc files. Environment +#: variables are expanded in this setting. + +# editor . + +#: The terminal based text editor (such as vim or nano) to use when +#: editing the kitty config file or similar tasks. + +#: The default value of . means to use the environment variables +#: VISUAL and EDITOR in that order. If these variables aren't set, +#: kitty will run your shell ($SHELL -l -i -c env) to see if your +#: shell startup rc files set VISUAL or EDITOR. If that doesn't work, +#: kitty will cycle through various known editors (vim, emacs, etc.) +#: and take the first one that exists on your system. + +# close_on_child_death no + +#: Close the window when the child process (usually the shell) exits. +#: With the default value no, the terminal will remain open when the +#: child exits as long as there are still other processes outputting +#: to the terminal (for example disowned or backgrounded processes). +#: When enabled with yes, the window will close as soon as the child +#: process exits. Note that setting it to yes means that any +#: background processes still using the terminal can fail silently +#: because their stdout/stderr/stdin no longer work. + +# remote_control_password + +#: Allow other programs to control kitty using passwords. This option +#: can be specified multiple times to add multiple passwords. If no +#: passwords are present kitty will ask the user for permission if a +#: program tries to use remote control with a password. A password can +#: also *optionally* be associated with a set of allowed remote +#: control actions. For example:: + +#: remote_control_password "my passphrase" get-colors set-colors focus-window focus-tab + +#: Only the specified actions will be allowed when using this +#: password. Glob patterns can be used too, for example:: + +#: remote_control_password "my passphrase" set-tab-* resize-* + +#: To get a list of available actions, run:: + +#: kitten @ --help + +#: A set of actions to be allowed when no password is sent can be +#: specified by using an empty password. For example:: + +#: remote_control_password "" *-colors + +#: Finally, the path to a python module can be specified that provides +#: a function is_cmd_allowed that is used to check every remote +#: control command. For example:: + +#: remote_control_password "my passphrase" my_rc_command_checker.py + +#: Relative paths are resolved from the kitty configuration directory. +#: See rc_custom_auth for details. + +# allow_remote_control no + +#: Allow other programs to control kitty. If you turn this on, other +#: programs can control all aspects of kitty, including sending text +#: to kitty windows, opening new windows, closing windows, reading the +#: content of windows, etc. Note that this even works over SSH +#: connections. The default setting of no prevents any form of remote +#: control. The meaning of the various values are: + +#: password +#: Remote control requests received over both the TTY device and the socket +#: are confirmed based on passwords, see remote_control_password. + +#: socket-only +#: Remote control requests received over a socket are accepted +#: unconditionally. Requests received over the TTY are denied. +#: See listen_on. + +#: socket +#: Remote control requests received over a socket are accepted +#: unconditionally. Requests received over the TTY are confirmed based on +#: password. + +#: no +#: Remote control is completely disabled. + +#: yes +#: Remote control requests are always accepted. + +# listen_on none + +#: Listen to the specified socket for remote control connections. Note +#: that this will apply to all kitty instances. It can be overridden +#: by the kitty --listen-on command line option. For UNIX sockets, +#: such as unix:${TEMP}/mykitty or unix:@mykitty (on Linux). +#: Environment variables are expanded and relative paths are resolved +#: with respect to the temporary directory. If {kitty_pid} is present, +#: then it is replaced by the PID of the kitty process, otherwise the +#: PID of the kitty process is appended to the value, with a hyphen. +#: For TCP sockets such as tcp:localhost:0 a random port is always +#: used even if a non-zero port number is specified. See the help for +#: kitty --listen-on for more details. Note that this will be ignored +#: unless allow_remote_control is set to either: yes, socket or +#: socket-only. Changing this option by reloading the config is not +#: supported. + +# env + +#: Specify the environment variables to be set in all child processes. +#: Using the name with an equal sign (e.g. env VAR=) will set it to +#: the empty string. Specifying only the name (e.g. env VAR) will +#: remove the variable from the child process' environment. Note that +#: environment variables are expanded recursively, for example:: + +#: env VAR1=a +#: env VAR2=${HOME}/${VAR1}/b + +#: The value of VAR2 will be /a/b. + +#: Use the special value read_from_shell to have kitty read the +#: specified variables from your login shell shell configuration. +#: Useful if your shell startup files setup a bunch of environment +#: variables that you want available to kitty and in kitty session +#: files. Each variable name is treated as a glob pattern to match. +#: For example: env read_from_shell=PATH LANG LC_* XDG_* EDITOR +#: VISUAL. Note that these variables are only read after the +#: configuration is fully processed, thus they are not available for +#: recursive expansion and they will override any variables set by +#: other env directives. + +# filter_notification + +#: Specify rules to filter out notifications sent by applications +#: running in kitty. Can be specified multiple times to create +#: multiple filter rules. A rule specification is of the form +#: field:regexp. A filter rule can match on any of the fields: title, +#: body, app, type. The special value of all filters out all +#: notifications. Rules can be combined using Boolean operators. Some +#: examples:: + +#: filter_notification title:hello or body:"abc.*def" +#: # filter out notification from vim except for ones about updates, (?i) +#: # makes matching case insensitive. +#: filter_notification app:"[ng]?vim" and not body:"(?i)update" +#: # filter out all notifications +#: filter_notification all + +#: The field app is the name of the application sending the +#: notification and type is the type of the notification. Not all +#: applications will send these fields, so you can also match on the +#: title and body of the notification text. More sophisticated +#: programmatic filtering and custom actions on notifications can be +#: done by creating a notifications.py file in the kitty config +#: directory (~/.config/kitty). An annotated sample is available +#: . + +# watcher + +#: Path to python file which will be loaded for watchers +#: . Can be +#: specified more than once to load multiple watchers. The watchers +#: will be added to every kitty window. Relative paths are resolved +#: relative to the kitty config directory. Note that reloading the +#: config will only affect windows created after the reload. + +# exe_search_path + +#: Control where kitty finds the programs to run. The default search +#: order is: First search the system wide PATH, then ~/.local/bin and +#: ~/bin. If still not found, the PATH defined in the login shell +#: after sourcing all its startup files is tried. Finally, if present, +#: the PATH specified by the env option is tried. + +#: This option allows you to prepend, append, or remove paths from +#: this search order. It can be specified multiple times for multiple +#: paths. A simple path will be prepended to the search order. A path +#: that starts with the + sign will be append to the search order, +#: after ~/bin above. A path that starts with the - sign will be +#: removed from the entire search order. For example:: + +#: exe_search_path /some/prepended/path +#: exe_search_path +/some/appended/path +#: exe_search_path -/some/excluded/path + +# update_check_interval 24 + +#: The interval to periodically check if an update to kitty is +#: available (in hours). If an update is found, a system notification +#: is displayed informing you of the available update. The default is +#: to check every 24 hours, set to zero to disable. Update checking is +#: only done by the official binary builds. Distro packages or source +#: builds do not do update checking. Changing this option by reloading +#: the config is not supported. + +# startup_session none + +#: Path to a session file to use for all kitty instances. Can be +#: overridden by using the kitty --session =none command line option +#: for individual instances. See sessions +#: in the kitty +#: documentation for details. Note that relative paths are interpreted +#: with respect to the kitty config directory. Environment variables +#: in the path are expanded. Changing this option by reloading the +#: config is not supported. Note that if kitty is invoked with command +#: line arguments specifying a command to run, this option is ignored. + +# clipboard_control write-clipboard write-primary read-clipboard-ask read-primary-ask + +#: Allow programs running in kitty to read and write from the +#: clipboard. You can control exactly which actions are allowed. The +#: possible actions are: write-clipboard, read-clipboard, write- +#: primary, read-primary, read-clipboard-ask, read-primary-ask. The +#: default is to allow writing to the clipboard and primary selection +#: and to ask for permission when a program tries to read from the +#: clipboard. Note that disabling the read confirmation is a security +#: risk as it means that any program, even the ones running on a +#: remote server via SSH can read your clipboard. See also +#: clipboard_max_size. + +# clipboard_max_size 512 + +#: The maximum size (in MB) of data from programs running in kitty +#: that will be stored for writing to the system clipboard. A value of +#: zero means no size limit is applied. See also clipboard_control. + +# file_transfer_confirmation_bypass + +#: The password that can be supplied to the file transfer kitten +#: to skip the +#: transfer confirmation prompt. This should only be used when +#: initiating transfers from trusted computers, over trusted networks +#: or encrypted transports, as it allows any programs running on the +#: remote machine to read/write to the local filesystem, without +#: permission. + +# allow_hyperlinks yes + +#: Process hyperlink escape sequences (OSC 8). If disabled OSC 8 +#: escape sequences are ignored. Otherwise they become clickable +#: links, that you can click with the mouse or by using the hints +#: kitten . The +#: special value of ask means that kitty will ask before opening the +#: link when clicked. + +# shell_integration enabled + +#: Enable shell integration on supported shells. This enables features +#: such as jumping to previous prompts, browsing the output of the +#: previous command in a pager, etc. on supported shells. Set to +#: disabled to turn off shell integration, completely. It is also +#: possible to disable individual features, set to a space separated +#: list of these values: no-rc, no-cursor, no-title, no-cwd, no- +#: prompt-mark, no-complete, no-sudo. See Shell integration +#: for details. + +# allow_cloning ask + +#: Control whether programs running in the terminal can request new +#: windows to be created. The canonical example is clone-in-kitty +#: . +#: By default, kitty will ask for permission for each clone request. +#: Allowing cloning unconditionally gives programs running in the +#: terminal (including over SSH) permission to execute arbitrary code, +#: as the user who is running the terminal, on the computer that the +#: terminal is running on. + +# clone_source_strategies venv,conda,env_var,path + +#: Control what shell code is sourced when running clone-in-kitty in +#: the newly cloned window. The supported strategies are: + +#: venv +#: Source the file $VIRTUAL_ENV/bin/activate. This is used by the +#: Python stdlib venv module and allows cloning venvs automatically. +#: conda +#: Run conda activate $CONDA_DEFAULT_ENV. This supports the virtual +#: environments created by conda. +#: env_var +#: Execute the contents of the environment variable +#: KITTY_CLONE_SOURCE_CODE with eval. +#: path +#: Source the file pointed to by the environment variable +#: KITTY_CLONE_SOURCE_PATH. + +#: This option must be a comma separated list of the above values. +#: Only the first valid match, in the order specified, is sourced. + +# notify_on_cmd_finish never + +#: Show a desktop notification when a long-running command finishes +#: (needs shell_integration). The possible values are: + +#: never +#: Never send a notification. + +#: unfocused +#: Only send a notification when the window does not have keyboard focus. + +#: invisible +#: Only send a notification when the window both is unfocused and not visible +#: to the user, for example, because it is in an inactive tab or its OS window +#: is not currently visible (on platforms that support OS window visibility querying +#: this considers an OS Window visible iff it is active). + +#: always +#: Always send a notification, regardless of window state. + +#: There are two optional arguments: + +#: First, the minimum duration for what is considered a long running +#: command. The default is 5 seconds. Specify a second argument to set +#: the duration. For example: invisible 15. Do not set the value too +#: small, otherwise a command that launches a new OS Window and exits +#: will spam a notification. + +#: Second, the action to perform. The default is notify. The possible +#: values are: + +#: notify +#: Send a desktop notification. The subsequent arguments are optional and specify when +#: the notification is automatically cleared. The set of possible events when the notification is +#: cleared are: focus and next. focus means that when the notification +#: policy is unfocused or invisible the notification is automatically cleared +#: when the window regains focus. The value of next means that the previous notification +#: is cleared when the next notification is shown. The default when no arguments are specified +#: is: focus next. + +#: bell +#: Ring the terminal bell. + +#: notify-bell +#: Send a desktop notification and ring the terminal bell. +#: The arguments are the same as for `notify`. + +#: command +#: Run a custom command. All subsequent arguments are the cmdline to run. + +#: Some more examples:: + +#: # Send a notification when a command takes more than 5 seconds in an unfocused window +#: notify_on_cmd_finish unfocused +#: # Send a notification when a command takes more than 10 seconds in a invisible window +#: notify_on_cmd_finish invisible 10.0 +#: # Ring a bell when a command takes more than 10 seconds in a invisible window +#: notify_on_cmd_finish invisible 10.0 bell +#: # Run 'notify-send' when a command takes more than 10 seconds in a invisible window +#: # Here %c is replaced by the current command line and %s by the job exit code +#: notify_on_cmd_finish invisible 10.0 command notify-send "job finished with status: %s" %c +#: # Do not clear previous notification when next command finishes or window regains focus +#: notify_on_cmd_finish invisible 5.0 notify + +# term xterm-kitty + +#: The value of the TERM environment variable to set. Changing this +#: can break many terminal programs, only change it if you know what +#: you are doing, not because you read some advice on "Stack Overflow" +#: to change it. The TERM variable is used by various programs to get +#: information about the capabilities and behavior of the terminal. If +#: you change it, depending on what programs you run, and how +#: different the terminal you are changing it to is, various things +#: from key-presses, to colors, to various advanced features may not +#: work. Changing this option by reloading the config will only affect +#: newly created windows. + +# terminfo_type path + +#: The value of the TERMINFO environment variable to set. This +#: variable is used by programs running in the terminal to search for +#: terminfo databases. The default value of path causes kitty to set +#: it to a filesystem location containing the kitty terminfo database. +#: A value of direct means put the entire database into the env var +#: directly. This can be useful when connecting to containers, for +#: example. But, note that not all software supports this. A value of +#: none means do not touch the variable. + +# forward_stdio no + +#: Forward STDOUT and STDERR of the kitty process to child processes. +#: This is useful for debugging as it allows child processes to print +#: to kitty's STDOUT directly. For example, echo hello world +#: >&$KITTY_STDIO_FORWARDED in a shell will print to the parent +#: kitty's STDOUT. Sets the KITTY_STDIO_FORWARDED=fdnum environment +#: variable so child processes know about the forwarding. Note that on +#: macOS this prevents the shell from being run via the login utility +#: so getlogin() will not work in programs run in this session. + +# menu_map + +#: Specify entries for various menus in kitty. Currently only the +#: global menubar on macOS is supported. For example:: + +#: menu_map global "Actions::Launch something special" launch --hold --type=os-window sh -c "echo hello world" + +#: This will create a menu entry named "Launch something special" in +#: an "Actions" menu in the macOS global menubar. Sub-menus can be +#: created by adding more levels separated by the :: characters. + +#: }}} + +#: OS specific tweaks {{{ + +# wayland_titlebar_color system + +#: The color of the kitty window's titlebar on Wayland systems with +#: client side window decorations such as GNOME. A value of system +#: means to use the default system colors, a value of background means +#: to use the background color of the currently active kitty window +#: and finally you can use an arbitrary color, such as #12af59 or red. + +# macos_titlebar_color system + +#: The color of the kitty window's titlebar on macOS. A value of +#: system means to use the default system color, light or dark can +#: also be used to set it explicitly. A value of background means to +#: use the background color of the currently active window and finally +#: you can use an arbitrary color, such as #12af59 or red. + +# macos_option_as_alt no + +#: Use the Option key as an Alt key on macOS. With this set to no, +#: kitty will use the macOS native Option+Key to enter Unicode +#: character behavior. This will break any Alt+Key keyboard shortcuts +#: in your terminal programs, but you can use the macOS Unicode input +#: technique. You can use the values: left, right or both to use only +#: the left, right or both Option keys as Alt, instead. Note that +#: kitty itself always treats Option the same as Alt. This means you +#: cannot use this option to configure different kitty shortcuts for +#: Option+Key vs. Alt+Key. Also, any kitty shortcuts using +#: Option/Alt+Key will take priority, so that any such key presses +#: will not be passed to terminal programs running inside kitty. +#: Changing this option by reloading the config is not supported. + +# macos_hide_from_tasks no + +#: Hide the kitty window from running tasks on macOS (⌘+Tab and the +#: Dock). Changing this option by reloading the config is not +#: supported. + +# macos_quit_when_last_window_closed no + +#: Have kitty quit when all the top-level windows are closed on macOS. +#: By default, kitty will stay running, even with no open windows, as +#: is the expected behavior on macOS. + +# macos_window_resizable yes + +#: Disable this if you want kitty top-level OS windows to not be +#: resizable on macOS. + +# macos_thicken_font 0 + +#: Draw an extra border around the font with the given width, to +#: increase legibility at small font sizes on macOS. For example, a +#: value of 0.75 will result in rendering that looks similar to sub- +#: pixel antialiasing at common font sizes. Note that in modern kitty, +#: this option is obsolete (although still supported). Consider using +#: text_composition_strategy instead. + +# macos_traditional_fullscreen no + +#: Use the macOS traditional full-screen transition, that is faster, +#: but less pretty. + +# macos_show_window_title_in all + +#: Control where the window title is displayed on macOS. A value of +#: window will show the title of the currently active window at the +#: top of the macOS window. A value of menubar will show the title of +#: the currently active window in the macOS global menu bar, making +#: use of otherwise wasted space. A value of all will show the title +#: in both places, and none hides the title. See +#: macos_menubar_title_max_length for how to control the length of the +#: title in the menu bar. + +# macos_menubar_title_max_length 0 + +#: The maximum number of characters from the window title to show in +#: the macOS global menu bar. Values less than one means that there is +#: no maximum limit. + +# macos_custom_beam_cursor no + +#: Use a custom mouse cursor for macOS that is easier to see on both +#: light and dark backgrounds. Nowadays, the default macOS cursor +#: already comes with a white border. WARNING: this might make your +#: mouse cursor invisible on dual GPU machines. Changing this option +#: by reloading the config is not supported. + +# macos_colorspace srgb + +#: The colorspace in which to interpret terminal colors. The default +#: of srgb will cause colors to match those seen in web browsers. The +#: value of default will use whatever the native colorspace of the +#: display is. The value of displayp3 will use Apple's special +#: snowflake display P3 color space, which will result in over +#: saturated (brighter) colors with some color shift. Reloading +#: configuration will change this value only for newly created OS +#: windows. + +# linux_display_server auto + +#: Choose between Wayland and X11 backends. By default, an appropriate +#: backend based on the system state is chosen automatically. Set it +#: to x11 or wayland to force the choice. Changing this option by +#: reloading the config is not supported. + +# wayland_enable_ime yes + +#: Enable Input Method Extension on Wayland. This is typically used +#: for inputting text in East Asian languages. However, its +#: implementation in Wayland is often buggy and introduces latency +#: into the input loop, so disable this if you know you dont need it. +#: Changing this option by reloading the config is not supported, it +#: will not have any effect. + +#: }}} + +#: Keyboard shortcuts {{{ + +#: Keys are identified simply by their lowercase Unicode characters. +#: For example: a for the A key, [ for the left square bracket key, +#: etc. For functional keys, such as Enter or Escape, the names are +#: present at Functional key definitions +#: . +#: For modifier keys, the names are ctrl (control, ⌃), shift (⇧), alt +#: (opt, option, ⌥), super (cmd, command, ⌘). + +#: Simple shortcut mapping is done with the map directive. For full +#: details on advanced mapping including modal and per application +#: maps, see mapping . Some +#: quick examples to illustrate common tasks:: + +#: # unmap a keyboard shortcut, passing it to the program running in kitty +#: map kitty_mod+space +#: # completely ignore a keyboard event +#: map ctrl+alt+f1 discard_event +#: # combine multiple actions +#: map kitty_mod+e combine : new_window : next_layout +#: # multi-key shortcuts +#: map ctrl+x>ctrl+y>z action + +#: The full list of actions that can be mapped to key presses is +#: available here . + +# kitty_mod ctrl+shift + +#: Special modifier key alias for default shortcuts. You can change +#: the value of this option to alter all default shortcuts that use +#: kitty_mod. + +# clear_all_shortcuts no + +#: Remove all shortcut definitions up to this point. Useful, for +#: instance, to remove the default shortcuts. + +# action_alias + +#: E.g. action_alias launch_tab launch --type=tab --cwd=current + +#: Define action aliases to avoid repeating the same options in +#: multiple mappings. Aliases can be defined for any action and will +#: be expanded recursively. For example, the above alias allows you to +#: create mappings to launch a new tab in the current working +#: directory without duplication:: + +#: map f1 launch_tab vim +#: map f2 launch_tab emacs + +#: Similarly, to alias kitten invocation:: + +#: action_alias hints kitten hints --hints-offset=0 + +# kitten_alias + +#: E.g. kitten_alias hints hints --hints-offset=0 + +#: Like action_alias above, but specifically for kittens. Generally, +#: prefer to use action_alias. This option is a legacy version, +#: present for backwards compatibility. It causes all invocations of +#: the aliased kitten to be substituted. So the example above will +#: cause all invocations of the hints kitten to have the --hints- +#: offset=0 option applied. + +#: Clipboard {{{ + +#: Copy to clipboard + +# map kitty_mod+c copy_to_clipboard + +#:: There is also a copy_or_interrupt action that can be optionally +#:: mapped to Ctrl+C. It will copy only if there is a selection and +#:: send an interrupt otherwise. Similarly, +#:: copy_and_clear_or_interrupt will copy and clear the selection or +#:: send an interrupt if there is no selection. The copy_or_noop +#:: action will copy if there is a selection and pass the key through +#:: to the application running in the terminal if there is no +#:: selection. + +#: Copy to clipboard or pass through + +# map cmd+c copy_or_noop + +#: Paste from clipboard + +# map kitty_mod+v paste_from_clipboard +# map cmd+v paste_from_clipboard + +#: Paste from selection + +# map kitty_mod+s paste_from_selection +# map shift+insert paste_from_selection + +#: Pass selection to program + +# map kitty_mod+o pass_selection_to_program + +#:: You can also pass the contents of the current selection to any +#:: program with pass_selection_to_program. By default, the system's +#:: open program is used, but you can specify your own, the selection +#:: will be passed as a command line argument to the program. For +#:: example:: + +#:: map kitty_mod+o pass_selection_to_program firefox + +#:: You can pass the current selection to a terminal program running +#:: in a new kitty window, by using the @selection placeholder:: + +#:: map kitty_mod+y new_window less @selection + +#: }}} + +#: Scrolling {{{ + +#: Scroll line up + +# map kitty_mod+up scroll_line_up +# map kitty_mod+k scroll_line_up +# map opt+cmd+page_up scroll_line_up +# map cmd+up scroll_line_up + +#: Scroll line down + +# map kitty_mod+down scroll_line_down +# map kitty_mod+j scroll_line_down +# map opt+cmd+page_down scroll_line_down +# map cmd+down scroll_line_down + +#: Scroll page up + +# map kitty_mod+page_up scroll_page_up +# map cmd+page_up scroll_page_up + +#: Scroll page down + +# map kitty_mod+page_down scroll_page_down +# map cmd+page_down scroll_page_down + +#: Scroll to top + +# map kitty_mod+home scroll_home +# map cmd+home scroll_home + +#: Scroll to bottom + +# map kitty_mod+end scroll_end +# map cmd+end scroll_end + +#: Scroll to previous shell prompt + +# map kitty_mod+z scroll_to_prompt -1 + +#:: Use a parameter of 0 for scroll_to_prompt to scroll to the last +#:: jumped to or the last clicked position. Requires shell +#:: integration +#:: to work. + +#: Scroll to next shell prompt + +# map kitty_mod+x scroll_to_prompt 1 + +#: Browse scrollback buffer in pager + +# map kitty_mod+h show_scrollback + +#:: You can pipe the contents of the current screen and history +#:: buffer as STDIN to an arbitrary program using launch --stdin- +#:: source. For example, the following opens the scrollback buffer in +#:: less in an overlay window:: + +#:: map f1 launch --stdin-source=@screen_scrollback --stdin-add-formatting --type=overlay less +G -R + +#:: For more details on piping screen and buffer contents to external +#:: programs, see launch . + +#: Browse output of the last shell command in pager + +# map kitty_mod+g show_last_command_output + +#:: You can also define additional shortcuts to get the command +#:: output. For example, to get the first command output on screen:: + +#:: map f1 show_first_command_output_on_screen + +#:: To get the command output that was last accessed by a keyboard +#:: action or mouse action:: + +#:: map f1 show_last_visited_command_output + +#:: You can pipe the output of the last command run in the shell +#:: using the launch action. For example, the following opens the +#:: output in less in an overlay window:: + +#:: map f1 launch --stdin-source=@last_cmd_output --stdin-add-formatting --type=overlay less +G -R + +#:: To get the output of the first command on the screen, use +#:: @first_cmd_output_on_screen. To get the output of the last jumped +#:: to command, use @last_visited_cmd_output. + +#:: Requires shell integration +#:: to work. + +#: Search the scrollback within a pager + +# map kitty_mod+/ search_scrollback +# map cmd+f search_scrollback + +#:: Search for currently selected text in the scrollback using the +#:: configured scrollback_pager. Assumes that pressing the / key +#:: triggers search mode in the pager. If you want to create a manual +#:: mapping with a special pager for this, you can use something +#:: like: + +#:: map f1 combine : launch --stdin-source=@screen_scrollback --stdin-add-formatting --type=overlay mypager : send_key / + +#:: For more sophisticated control, such as using the current +#:: selection, use remote_control_script. + +#: }}} + +#: Window management {{{ + +#: New window + +# map kitty_mod+enter new_window +# map cmd+enter new_window + +#:: You can open a new kitty window running an arbitrary program, for +#:: example:: + +#:: map kitty_mod+y launch mutt + +#:: You can open a new window with the current working directory set +#:: to the working directory of the current window using:: + +#:: map ctrl+alt+enter launch --cwd=current + +#:: You can open a new window that is allowed to control kitty via +#:: the kitty remote control facility with launch --allow-remote- +#:: control. Any programs running in that window will be allowed to +#:: control kitty. For example:: + +#:: map ctrl+enter launch --allow-remote-control some_program + +#:: You can open a new window next to the currently active window or +#:: as the first window, with:: + +#:: map ctrl+n launch --location=neighbor +#:: map ctrl+f launch --location=first + +#:: For more details, see launch +#:: . + +#: New OS window + +# map kitty_mod+n new_os_window +# map cmd+n new_os_window + +#:: Works like new_window above, except that it opens a top-level OS +#:: window. In particular you can use new_os_window_with_cwd to open +#:: a window with the current working directory. + +#: Close window + +# map kitty_mod+w close_window +# map shift+cmd+d close_window + +#: Next window + +# map kitty_mod+] next_window + +#: Previous window + +# map kitty_mod+[ previous_window + +#: Move window forward + +# map kitty_mod+f move_window_forward + +#: Move window backward + +# map kitty_mod+b move_window_backward + +#: Move window to top + +# map kitty_mod+` move_window_to_top + +#: Start resizing window + +# map kitty_mod+r start_resizing_window +# map cmd+r start_resizing_window + +#: First window + +# map kitty_mod+1 first_window +# map cmd+1 first_window + +#: Second window + +# map kitty_mod+2 second_window +# map cmd+2 second_window + +#: Third window + +# map kitty_mod+3 third_window +# map cmd+3 third_window + +#: Fourth window + +# map kitty_mod+4 fourth_window +# map cmd+4 fourth_window + +#: Fifth window + +# map kitty_mod+5 fifth_window +# map cmd+5 fifth_window + +#: Sixth window + +# map kitty_mod+6 sixth_window +# map cmd+6 sixth_window + +#: Seventh window + +# map kitty_mod+7 seventh_window +# map cmd+7 seventh_window + +#: Eighth window + +# map kitty_mod+8 eighth_window +# map cmd+8 eighth_window + +#: Ninth window + +# map kitty_mod+9 ninth_window +# map cmd+9 ninth_window + +#: Tenth window + +# map kitty_mod+0 tenth_window + +#: Visually select and focus window + +# map kitty_mod+f7 focus_visible_window + +#:: Display overlay numbers and alphabets on the window, and switch +#:: the focus to the window when you press the key. When there are +#:: only two windows, the focus will be switched directly without +#:: displaying the overlay. You can change the overlay characters and +#:: their order with option visual_window_select_characters. + +#: Visually swap window with another + +# map kitty_mod+f8 swap_with_window + +#:: Works like focus_visible_window above, but swaps the window. + +#: }}} + +#: Tab management {{{ + +#: Next tab + +# map kitty_mod+right next_tab +# map shift+cmd+] next_tab +# map ctrl+tab next_tab + +#: Previous tab + +# map kitty_mod+left previous_tab +# map shift+cmd+[ previous_tab +# map ctrl+shift+tab previous_tab + +#: New tab + +# map kitty_mod+t new_tab +# map cmd+t new_tab + +#: Close tab + +# map kitty_mod+q close_tab +# map cmd+w close_tab + +#: Close OS window + +# map shift+cmd+w close_os_window + +#: Move tab forward + +# map kitty_mod+. move_tab_forward + +#: Move tab backward + +# map kitty_mod+, move_tab_backward + +#: Set tab title + +# map kitty_mod+alt+t set_tab_title +# map shift+cmd+i set_tab_title + + +#: You can also create shortcuts to go to specific tabs, with 1 being +#: the first tab, 2 the second tab and -1 being the previously active +#: tab, -2 being the tab active before the previously active tab and +#: so on. Any number larger than the number of tabs goes to the last +#: tab and any number less than the number of previously used tabs in +#: the history goes to the oldest previously used tab in the history:: + +#: map ctrl+alt+1 goto_tab 1 +#: map ctrl+alt+2 goto_tab 2 + +#: Just as with new_window above, you can also pass the name of +#: arbitrary commands to run when using new_tab and new_tab_with_cwd. +#: Finally, if you want the new tab to open next to the current tab +#: rather than at the end of the tabs list, use:: + +#: map ctrl+t new_tab !neighbor [optional cmd to run] +#: }}} + +#: Layout management {{{ + +#: Next layout + +# map kitty_mod+l next_layout + + +#: You can also create shortcuts to switch to specific layouts:: + +#: map ctrl+alt+t goto_layout tall +#: map ctrl+alt+s goto_layout stack + +#: Similarly, to switch back to the previous layout:: + +#: map ctrl+alt+p last_used_layout + +#: There is also a toggle_layout action that switches to the named +#: layout or back to the previous layout if in the named layout. +#: Useful to temporarily "zoom" the active window by switching to the +#: stack layout:: + +#: map ctrl+alt+z toggle_layout stack +#: }}} + +#: Font sizes {{{ + +#: You can change the font size for all top-level kitty OS windows at +#: a time or only the current one. + +#: Increase font size + +# map kitty_mod+equal change_font_size all +2.0 +# map kitty_mod+plus change_font_size all +2.0 +# map kitty_mod+kp_add change_font_size all +2.0 +# map cmd+plus change_font_size all +2.0 +# map cmd+equal change_font_size all +2.0 +# map shift+cmd+equal change_font_size all +2.0 + +#: Decrease font size + +# map kitty_mod+minus change_font_size all -2.0 +# map kitty_mod+kp_subtract change_font_size all -2.0 +# map cmd+minus change_font_size all -2.0 +# map shift+cmd+minus change_font_size all -2.0 + +#: Reset font size + +# map kitty_mod+backspace change_font_size all 0 +# map cmd+0 change_font_size all 0 + + +#: To setup shortcuts for specific font sizes:: + +#: map kitty_mod+f6 change_font_size all 10.0 + +#: To setup shortcuts to change only the current OS window's font +#: size:: + +#: map kitty_mod+f6 change_font_size current 10.0 + +#: To setup shortcuts to multiply/divide the font size:: + +#: map kitty_mod+f6 change_font_size all *2.0 +#: map kitty_mod+f6 change_font_size all /2.0 +#: }}} + +#: Select and act on visible text {{{ + +#: Use the hints kitten to select text and either pass it to an +#: external program or insert it into the terminal or copy it to the +#: clipboard. + +#: Open URL + +# map kitty_mod+e open_url_with_hints + +#:: Open a currently visible URL using the keyboard. The program used +#:: to open the URL is specified in open_url_with. + +#: Insert selected path + +# map kitty_mod+p>f kitten hints --type path --program - + +#:: Select a path/filename and insert it into the terminal. Useful, +#:: for instance to run git commands on a filename output from a +#:: previous git command. + +#: Open selected path + +# map kitty_mod+p>shift+f kitten hints --type path + +#:: Select a path/filename and open it with the default open program. + +#: Insert chosen file + +# map kitty_mod+p>c kitten choose-files + +#:: Select a file using the choose-files +#:: kitten +#:: and insert it into the terminal. + +#: Insert chosen directory + +# map kitty_mod+p>d kitten choose-files --mode=dir + +#:: Select a directory using the choose-files +#:: kitten +#:: and insert it into the terminal. + +#: Insert selected line + +# map kitty_mod+p>l kitten hints --type line --program - + +#:: Select a line of text and insert it into the terminal. Useful for +#:: the output of things like: `ls -1`. + +#: Insert selected word + +# map kitty_mod+p>w kitten hints --type word --program - + +#:: Select words and insert into terminal. + +#: Insert selected hash + +# map kitty_mod+p>h kitten hints --type hash --program - + +#:: Select something that looks like a hash and insert it into the +#:: terminal. Useful with git, which uses SHA1 hashes to identify +#:: commits. + +#: Open the selected file at the selected line + +# map kitty_mod+p>n kitten hints --type linenum + +#:: Select something that looks like filename:linenum and open it in +#:: your default editor at the specified line number. + +#: Open the selected hyperlink + +# map kitty_mod+p>y kitten hints --type hyperlink + +#:: Select a hyperlink (i.e. a URL that has been marked as such by +#:: the terminal program, for example, by `ls --hyperlink=auto`). + + +#: The hints kitten has many more modes of operation that you can map +#: to different shortcuts. For a full description see hints kitten +#: . +#: }}} + +#: Miscellaneous {{{ + +#: Show documentation + +# map kitty_mod+f1 show_kitty_doc overview + +#: Toggle fullscreen + +# map kitty_mod+f11 toggle_fullscreen +# map ctrl+cmd+f toggle_fullscreen + +#: Toggle maximized + +# map kitty_mod+f10 toggle_maximized + +#: Toggle macOS secure keyboard entry + +# map opt+cmd+s toggle_macos_secure_keyboard_entry + +#: macOS Cycle through OS Windows + +# map cmd+` macos_cycle_through_os_windows + +#: macOS Cycle through OS Windows backwards + +# map cmd+shift+` macos_cycle_through_os_windows_backwards + +#: Unicode input + +# map kitty_mod+u kitten unicode_input +# map ctrl+cmd+space kitten unicode_input + +#: Edit config file + +# map kitty_mod+f2 edit_config_file +# map cmd+, edit_config_file + +#: Open the kitty command shell + +# map kitty_mod+escape kitty_shell window + +#:: Open the kitty shell in a new window / tab / overlay / os_window +#:: to control kitty using commands. + +#: Increase background opacity + +# map kitty_mod+a>m set_background_opacity +0.1 + +#: Decrease background opacity + +# map kitty_mod+a>l set_background_opacity -0.1 + +#: Make background fully opaque + +# map kitty_mod+a>1 set_background_opacity 1 + +#: Reset background opacity + +# map kitty_mod+a>d set_background_opacity default + +#: Reset the terminal + +# map kitty_mod+delete clear_terminal reset active +# map opt+cmd+r clear_terminal reset active + +#:: You can create shortcuts to clear/reset the terminal. For +#:: example:: + +#:: # Reset the terminal +#:: map f1 clear_terminal reset active +#:: # Clear the terminal screen by erasing all contents +#:: map f1 clear_terminal clear active +#:: # Clear the terminal scrollback by erasing it +#:: map f1 clear_terminal scrollback active +#:: # Scroll the contents of the screen into the scrollback +#:: map f1 clear_terminal scroll active +#:: # Clear everything on screen up to the line with the cursor or the start of the current prompt (needs shell integration) +#:: map f1 clear_terminal to_cursor active +#:: # Same as above except cleared lines are moved into scrollback +#:: map f1 clear_terminal to_cursor_scroll active +#:: # Erase the last command and its output (needs shell integration to work) +#:: map f1 clear_terminal last_command active + +#:: If you want to operate on all kitty windows instead of just the +#:: current one, use all instead of active. + +#:: Some useful functions that can be defined in the shell rc files +#:: to perform various kinds of clearing of the current window: + +#:: .. code-block:: sh + +#:: clear-only-screen() { +#:: printf "\e[H\e[2J" +#:: } + +#:: clear-screen-and-scrollback() { +#:: printf "\e[H\e[3J" +#:: } + +#:: clear-screen-saving-contents-in-scrollback() { +#:: printf "\e[H\e[22J" +#:: } + +#:: For instance, using these escape codes, it is possible to remap +#:: Ctrl+L to both scroll the current screen contents into the +#:: scrollback buffer and clear the screen, instead of just clearing +#:: the screen. For ZSH, in ~/.zshrc, add: + +#:: .. code-block:: zsh + +#:: ctrl_l() { +#:: builtin print -rn -- $'\r\e[0J\e[H\e[22J' >"$TTY" +#:: builtin zle .reset-prompt +#:: builtin zle -R +#:: } +#:: zle -N ctrl_l +#:: bindkey '^l' ctrl_l + +#:: Alternatively, you can just add map ctrl+l clear_terminal +#:: to_cursor_scroll active to kitty.conf which works with no changes +#:: to the shell rc files, but only clears up to the prompt, it does +#:: not clear any text at the prompt itself. + +#: Clear to start + +# map cmd+k clear_terminal to_cursor active + +#: Clear scrollback + +# map option+cmd+k clear_terminal scrollback active + +#: Clear the last command + +# map cmd+l clear_terminal last_command active + +#: Clear screen + +# map cmd+ctrl+l clear_terminal to_cursor_scroll active + +#: Reload kitty.conf + +# map ctrl+cmd+, load_config_file + +#:: Reload kitty.conf, applying any changes since the last time it +#:: was loaded. Note that a handful of options cannot be dynamically +#:: changed and require a full restart of kitty. Particularly, when +#:: changing shortcuts for actions located on the macOS global menu +#:: bar, a full restart is needed. You can also map a keybinding to +#:: load a different config file, for example:: + +#:: map f5 load_config /path/to/alternative/kitty.conf + +#:: Note that all options from the original kitty.conf are discarded, +#:: in other words the new configuration *replace* the old ones. + +#: Debug kitty configuration + +# map kitty_mod+f6 debug_config +# map opt+cmd+, debug_config + +#:: Show details about exactly what configuration kitty is running +#:: with and its host environment. Useful for debugging issues. + +#: Send arbitrary text on key presses + +#:: E.g. map ctrl+shift+alt+h send_text all Hello World + +#:: You can tell kitty to send arbitrary (UTF-8) encoded text to the +#:: client program when pressing specified shortcut keys. For +#:: example:: + +#:: map ctrl+alt+a send_text all Special text + +#:: This will send "Special text" when you press the Ctrl+Alt+A key +#:: combination. The text to be sent decodes ANSI C escapes +#:: so you can use escapes like \e to send control +#:: codes or \u21fb to send Unicode characters (or you can just input +#:: the Unicode characters directly as UTF-8 text). You can use +#:: `kitten show-key` to get the key escape codes you want to +#:: emulate. + +#:: The first argument to send_text is the keyboard modes in which to +#:: activate the shortcut. The possible values are normal, +#:: application, kitty or a comma separated combination of them. The +#:: modes normal and application refer to the DECCKM cursor key mode +#:: for terminals, and kitty refers to the kitty extended keyboard +#:: protocol. The special value all means all of them. + +#:: Some more examples:: + +#:: # Output a word and move the cursor to the start of the line (like typing and pressing Home) +#:: map ctrl+alt+a send_text normal Word\e[H +#:: map ctrl+alt+a send_text application Word\eOH +#:: # Run a command at a shell prompt (like typing the command and pressing Enter) +#:: map ctrl+alt+a send_text normal,application some command with arguments\r + +#: Open kitty Website + +# map shift+cmd+/ open_url https://sw.kovidgoyal.net/kitty/ + +#: Hide macOS kitty application + +# map cmd+h hide_macos_app + +#: Hide macOS other applications + +# map opt+cmd+h hide_macos_other_apps + +#: Minimize macOS window + +# map cmd+m minimize_macos_window + +#: Quit kitty + +# map cmd+q quit + +#: }}} + +#: }}} + + +# BEGIN_KITTY_FONTS +font_family family="JetBrainsMono Nerd Font" +bold_font auto +italic_font auto +bold_italic_font auto +# END_KITTY_FONTS diff --git a/.config/kitty/cat.png b/.config/kitty/cat.png new file mode 120000 index 0000000..8078b05 --- /dev/null +++ b/.config/kitty/cat.png @@ -0,0 +1 @@ +../../.dotfiles/.config/kitty/cat.png \ No newline at end of file diff --git a/.config/kitty/current-theme.conf b/.config/kitty/current-theme.conf new file mode 100644 index 0000000..ef68b50 --- /dev/null +++ b/.config/kitty/current-theme.conf @@ -0,0 +1,50 @@ +# vim:ft=kitty + +## name: Tokyo Night Storm +## license: MIT +## author: Folke Lemaitre +## upstream: https://github.com/folke/tokyonight.nvim/raw/main/extras/kitty/tokyonight_storm.conf + + +background #24283b +foreground #c0caf5 +selection_background #2e3c64 +selection_foreground #c0caf5 +url_color #73daca +cursor #c0caf5 +cursor_text_color #24283b + +# Tabs +active_tab_background #7aa2f7 +active_tab_foreground #1f2335 +inactive_tab_background #292e42 +inactive_tab_foreground #545c7e +#tab_bar_background #1d202f + +# Windows +active_border_color #7aa2f7 +inactive_border_color #292e42 + +# normal +color0 #1d202f +color1 #f7768e +color2 #9ece6a +color3 #e0af68 +color4 #7aa2f7 +color5 #bb9af7 +color6 #7dcfff +color7 #a9b1d6 + +# bright +color8 #414868 +color9 #ff899d +color10 #9fe044 +color11 #faba4a +color12 #8db0ff +color13 #c7a9ff +color14 #a4daff +color15 #c0caf5 + +# extended colors +color16 #ff9e64 +color17 #db4b4b diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 0000000..b9549b6 --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,4 @@ +include base.conf +background_opacity 0.5 +transparent_background_colors #292E42@0.7 #2e3c64@0.9 #3B4261@0.7 +map f5 load_config_file /home/arch/.config/kitty/solid.conf diff --git a/.config/kitty/kitty.conf.bak b/.config/kitty/kitty.conf.bak new file mode 100644 index 0000000..a7fd524 --- /dev/null +++ b/.config/kitty/kitty.conf.bak @@ -0,0 +1,2997 @@ +# vim:fileencoding=utf-8:foldmethod=marker + +# BEGIN_KITTY_THEME +# Tokyo Night Storm +include current-theme.conf +# END_KITTY_THEME + +#: Fonts {{{ + +#: kitty has very powerful font management. You can configure +#: individual font faces and even specify special fonts for particular +#: characters. + +# font_family monospace +# bold_font auto +# italic_font auto +# bold_italic_font auto + +#: You can specify different fonts for the bold/italic/bold-italic +#: variants. The easiest way to select fonts is to run the `kitten +#: choose-fonts` command which will present a nice UI for you to +#: select the fonts you want with previews and support for selecting +#: variable fonts and font features. If you want to learn to select +#: fonts manually, read the font specification syntax +#: . + +# font_size 11.0 + +#: Font size (in pts). + +# force_ltr no + +#: kitty does not support BIDI (bidirectional text), however, for RTL +#: scripts, words are automatically displayed in RTL. That is to say, +#: in an RTL script, the words "HELLO WORLD" display in kitty as +#: "WORLD HELLO", and if you try to select a substring of an RTL- +#: shaped string, you will get the character that would be there had +#: the string been LTR. For example, assuming the Hebrew word ירושלים, +#: selecting the character that on the screen appears to be ם actually +#: writes into the selection buffer the character י. kitty's default +#: behavior is useful in conjunction with a filter to reverse the word +#: order, however, if you wish to manipulate RTL glyphs, it can be +#: very challenging to work with, so this option is provided to turn +#: it off. Furthermore, this option can be used with the command line +#: program GNU FriBidi +#: to get BIDI support, because it will force kitty to always treat +#: the text as LTR, which FriBidi expects for terminals. + +# symbol_map + +#: E.g. symbol_map U+E0A0-U+E0A3,U+E0C0-U+E0C7 PowerlineSymbols + +#: Map the specified Unicode codepoints to a particular font. Useful +#: if you need special rendering for some symbols, such as for +#: Powerline. Avoids the need for patched fonts. Each Unicode code +#: point is specified in the form `U+`. You +#: can specify multiple code points, separated by commas and ranges +#: separated by hyphens. This option can be specified multiple times. +#: The syntax is:: + +#: symbol_map codepoints Font Family Name + +# narrow_symbols + +#: E.g. narrow_symbols U+E0A0-U+E0A3,U+E0C0-U+E0C7 1 + +#: Usually, for Private Use Unicode characters and some symbol/dingbat +#: characters, if the character is followed by one or more spaces, +#: kitty will use those extra cells to render the character larger, if +#: the character in the font has a wide aspect ratio. Using this +#: option you can force kitty to restrict the specified code points to +#: render in the specified number of cells (defaulting to one cell). +#: This option can be specified multiple times. The syntax is:: + +#: narrow_symbols codepoints [optionally the number of cells] + +# disable_ligatures never + +#: Choose how you want to handle multi-character ligatures. The +#: default is to always render them. You can tell kitty to not render +#: them when the cursor is over them by using cursor to make editing +#: easier, or have kitty never render them at all by using always, if +#: you don't like them. The ligature strategy can be set per-window +#: either using the kitty remote control facility or by defining +#: shortcuts for it in kitty.conf, for example:: + +#: map alt+1 disable_ligatures_in active always +#: map alt+2 disable_ligatures_in all never +#: map alt+3 disable_ligatures_in tab cursor + +#: Note that this refers to programming ligatures, typically +#: implemented using the calt OpenType feature. For disabling general +#: ligatures, use the font_features option. + +# font_features + +#: E.g. font_features none + +#: Choose exactly which OpenType features to enable or disable. Note +#: that for the main fonts, features can be specified when selecting +#: the font using the choose-fonts kitten. This setting is useful for +#: fallback fonts. + +#: Some fonts might have features worthwhile in a terminal. For +#: example, Fira Code includes a discretionary feature, zero, which in +#: that font changes the appearance of the zero (0), to make it more +#: easily distinguishable from Ø. Fira Code also includes other +#: discretionary features known as Stylistic Sets which have the tags +#: ss01 through ss20. + +#: For the exact syntax to use for individual features, see the +#: HarfBuzz documentation . + +#: Note that this code is indexed by PostScript name, and not the font +#: family. This allows you to define very precise feature settings; +#: e.g. you can disable a feature in the italic font but not in the +#: regular font. + +#: On Linux, font features are first read from the FontConfig database +#: and then this option is applied, so they can be configured in a +#: single, central place. + +#: To get the PostScript name for a font, use the `fc-scan file.ttf` +#: command on Linux or the `Font Book tool on macOS +#: `__. + +#: Enable alternate zero and oldstyle numerals:: + +#: font_features FiraCode-Retina +zero +onum + +#: Enable only alternate zero in the bold font:: + +#: font_features FiraCode-Bold +zero + +#: Disable the normal ligatures, but keep the calt feature which (in +#: this font) breaks up monotony:: + +#: font_features TT2020StyleB-Regular -liga +calt + +#: In conjunction with force_ltr, you may want to disable Arabic +#: shaping entirely, and only look at their isolated forms if they +#: show up in a document. You can do this with e.g.:: + +#: font_features UnifontMedium +isol -medi -fina -init + +# modify_font + +#: Modify font characteristics such as the position or thickness of +#: the underline and strikethrough. The modifications can have the +#: suffix px for pixels or % for percentage of original value. No +#: suffix means use pts. For example:: + +#: modify_font underline_position -2 +#: modify_font underline_thickness 150% +#: modify_font strikethrough_position 2px + +#: Additionally, you can modify the size of the cell in which each +#: font glyph is rendered and the baseline at which the glyph is +#: placed in the cell. For example:: + +#: modify_font cell_width 80% +#: modify_font cell_height -2px +#: modify_font baseline 3 + +#: Note that modifying the baseline will automatically adjust the +#: underline and strikethrough positions by the same amount. +#: Increasing the baseline raises glyphs inside the cell and +#: decreasing it lowers them. Decreasing the cell size might cause +#: rendering artifacts, so use with care. + +# box_drawing_scale 0.001, 1, 1.5, 2 + +#: The sizes of the lines used for the box drawing Unicode characters. +#: These values are in pts. They will be scaled by the monitor DPI to +#: arrive at a pixel value. There must be four values corresponding to +#: thin, normal, thick, and very thick lines. + +# undercurl_style thin-sparse + +#: The style with which undercurls are rendered. This option takes the +#: form (thin|thick)-(sparse|dense). Thin and thick control the +#: thickness of the undercurl. Sparse and dense control how often the +#: curl oscillates. With sparse the curl will peak once per character, +#: with dense twice. Changing this option dynamically via reloading +#: the config or remote control is undefined. + +# underline_exclusion 1 + +#: By default kitty renders gaps in underlines when they overlap with +#: descenders (the parts of letters below the baseline, such as for y, +#: q, p etc.). This option controls the thickness of the gaps. It can +#: be either a unitless number in which case it is a fraction of the +#: underline thickness as specified in the font or it can have a +#: suffix of px for pixels or pt for points. Set to zero to disable +#: the gaps. Changing this option dynamically via reloading the config +#: or remote control is undefined. + +# text_composition_strategy platform + +#: Control how kitty composites text glyphs onto the background color. +#: The default value of platform tries for text rendering as close to +#: "native" for the platform kitty is running on as possible. + +#: A value of legacy uses the old (pre kitty 0.28) strategy for how +#: glyphs are composited. This will make dark text on light +#: backgrounds look thicker and light text on dark backgrounds +#: thinner. It might also make some text appear like the strokes are +#: uneven. + +#: You can fine tune the actual contrast curve used for glyph +#: composition by specifying up to two space-separated numbers for +#: this setting. + +#: The first number is the gamma adjustment, which controls the +#: thickness of dark text on light backgrounds. Increasing the value +#: will make text appear thicker. The default value for this is 1.0 on +#: Linux and 1.7 on macOS. Valid values are 0.01 and above. The result +#: is scaled based on the luminance difference between the background +#: and the foreground. Dark text on light backgrounds receives the +#: full impact of the curve while light text on dark backgrounds is +#: affected very little. + +#: The second number is an additional multiplicative contrast. It is +#: percentage ranging from 0 to 100. The default value is 0 on Linux +#: and 30 on macOS. + +#: If you wish to achieve similar looking thickness in light and dark +#: themes, a good way to experiment is start by setting the value to +#: 1.0 0 and use a dark theme. Then adjust the second parameter until +#: it looks good. Then switch to a light theme and adjust the first +#: parameter until the perceived thickness matches the dark theme. + +# text_fg_override_threshold 0 + +#: A setting to prevent low contrast between foreground and background +#: colors. Useful when working with applications that use colors that +#: do not contrast well with your preferred color scheme. The default +#: value is 0, which means no color overriding is performed. There are +#: two modes of operation: + +#: A value with the suffix ratio represents the minimum accepted +#: contrast ratio between the foreground and background color. +#: Possible values range from 0.0 ratio to 21.0 ratio. For example, to +#: meet WCAG level AA +#: +#: a value of 4.5 ratio can be provided. The algorithm is implemented +#: using HSLuv which enables it to change the +#: perceived lightness of a color just as much as needed without +#: really changing its hue and saturation. + +#: A value with the suffix % represents the minimum accepted +#: difference in luminance between the foreground and background +#: color, below which kitty will override the foreground color. It is +#: percentage ranging from 0 % to 100 %. If the difference in +#: luminance of the foreground and background is below this threshold, +#: the foreground color will be set to white if the background is dark +#: or black if the background is light. + +#: WARNING: Some programs use characters (such as block characters) +#: for graphics display and may expect to be able to set the +#: foreground and background to the same color (or similar colors). If +#: you see unexpected stripes, dots, lines, incorrect color, no color +#: where you expect color, or any kind of graphic display problem try +#: setting text_fg_override_threshold to 0 to see if this is the cause +#: of the problem or consider using the ratio mode of operation +#: described above instead of the % mode of operation. + +#: }}} + +#: Text cursor customization {{{ + +# cursor #cccccc + +#: Default text cursor color. If set to the special value none the +#: cursor will be rendered with a "reverse video" effect. Its color +#: will be the color of the text in the cell it is over and the text +#: will be rendered with the background color of the cell. Note that +#: if the program running in the terminal sets a cursor color, this +#: takes precedence. Also, the cursor colors are modified if the cell +#: background and foreground colors have very low contrast. Note that +#: some themes set this value, so if you want to override it, place +#: your value after the lines where the theme file is included. + +# cursor_text_color #111111 + +#: The color of text under the cursor. If you want it rendered with +#: the background color of the cell underneath instead, use the +#: special keyword: `background`. Note that if cursor is set to none +#: then this option is ignored. Note that some themes set this value, +#: so if you want to override it, place your value after the lines +#: where the theme file is included. + +# cursor_shape block + +#: The cursor shape can be one of block, beam, underline. Note that +#: when reloading the config this will be changed only if the cursor +#: shape has not been set by the program running in the terminal. This +#: sets the default cursor shape, applications running in the terminal +#: can override it. In particular, shell integration +#: in kitty sets +#: the cursor shape to beam at shell prompts. You can avoid this by +#: setting shell_integration to no-cursor. + +# cursor_shape_unfocused hollow + +#: Defines the text cursor shape when the OS window is not focused. +#: The unfocused cursor shape can be one of block, beam, underline, +#: hollow and unchanged (leave the cursor shape as it is). + +# cursor_beam_thickness 1.5 + +#: The thickness of the beam cursor (in pts). + +# cursor_underline_thickness 2.0 + +#: The thickness of the underline cursor (in pts). + +# cursor_blink_interval -1 + +#: The interval to blink the cursor (in seconds). Set to zero to +#: disable blinking. Negative values mean use system default. Note +#: that the minimum interval will be limited to repaint_delay. You can +#: also animate the cursor blink by specifying an easing function. For +#: example, setting this to option to 0.5 ease-in-out will cause the +#: cursor blink to be animated over a second, in the first half of the +#: second it will go from opaque to transparent and then back again +#: over the next half. You can specify different easing functions for +#: the two halves, for example: -1 linear ease-out. kitty supports all +#: the CSS easing functions . Note that turning on animations +#: uses extra power as it means the screen is redrawn multiple times +#: per blink interval. See also, cursor_stop_blinking_after. This +#: setting also controls blinking text, which blinks in exact rhythm +#: with the cursor. + +# cursor_stop_blinking_after 15.0 + +#: Stop blinking cursor after the specified number of seconds of +#: keyboard inactivity. Set to zero to never stop blinking. This +#: setting also controls blinking text, which blinks in exact rhythm +#: with the cursor. + +# cursor_trail 0 + +#: Set this to a value larger than zero to enable a "cursor trail" +#: animation. This is an animation that shows a "trail" following the +#: movement of the text cursor. It makes it easy to follow large +#: cursor jumps and makes for a cool visual effect of the cursor +#: zooming around the screen. The actual value of this option controls +#: when the animation is triggered. It is a number of milliseconds. +#: The trail animation only follows cursors that have stayed in their +#: position for longer than the specified number of milliseconds. This +#: prevents trails from appearing for cursors that rapidly change +#: their positions during UI updates in complex applications. See +#: cursor_trail_decay to control the animation speed and +#: cursor_trail_start_threshold to control when a cursor trail is +#: started. + +# cursor_trail_decay 0.1 0.4 + +#: Controls the decay times for the cursor trail effect when the +#: cursor_trail is enabled. This option accepts two positive float +#: values specifying the fastest and slowest decay times in seconds. +#: The first value corresponds to the fastest decay time (minimum), +#: and the second value corresponds to the slowest decay time +#: (maximum). The second value must be equal to or greater than the +#: first value. Smaller values result in a faster decay of the cursor +#: trail. Adjust these values to control how quickly the cursor trail +#: fades away. + +# cursor_trail_start_threshold 2 + +#: Set the distance threshold for starting the cursor trail. This +#: option accepts a positive integer value that represents the minimum +#: number of cells the cursor must move before the trail is started. +#: When the cursor moves less than this threshold, the trail is +#: skipped, reducing unnecessary cursor trail animation. + +# cursor_trail_color none + +#: Set the color of the cursor trail when cursor_trail is enabled. If +#: set to 'none' (the default), the cursor trail will use the cursor's +#: background color. Otherwise, specify a color value (e.g., #ff0000 +#: for red, or a named color like 'red'). This allows you to customize +#: the appearance of the cursor trail independently of the cursor +#: color. + +#: }}} + +#: Scrollback {{{ + +# scrollback_lines 2000 + +#: Number of lines of history to keep in memory for scrolling back. +#: Memory is allocated on demand. Negative numbers are (effectively) +#: infinite scrollback. Note that using very large scrollback is not +#: recommended as it can slow down performance of the terminal and +#: also use large amounts of RAM. Instead, consider using +#: scrollback_pager_history_size. Note that on config reload if this +#: is changed it will only affect newly created windows, not existing +#: ones. + +# scrollbar scrolled + +#: Control when the scrollbar is displayed. + +#: scrolled +#: means when the scrolling backwards has started. +#: hovered +#: means when the mouse is hovering on the right edge of the window. +#: scrolled-and-hovered +#: means when the mouse is over the scrollbar region *and* scrolling backwards has started. +#: always +#: means whenever any scrollback is present +#: never +#: means disable the scrollbar. + +# scrollbar_interactive yes + +#: If disabled, the scrollbar will not be controllable via th emouse +#: and all mouse events will pass through the scrollbar. + +# scrollbar_jump_on_click yes + +#: When enabled clicking in the scrollbar track will cause the scroll +#: position to jump to the clicked location, otherwise the scroll +#: position will only move towards the position by a single screenful, +#: which is how traditional scrollbars behave. + +# scrollbar_width 0.5 + +#: The width of the scroll bar in units of cell width. + +# scrollbar_hover_width 1 + +#: The width of the scroll bar when the mouse is hovering over it, in +#: units of cell width. + +# scrollbar_handle_opacity 0.5 + +#: The opacity of the scrollbar handle, 0 being fully transparent and +#: 1 being full opaque. + +# scrollbar_radius 0.3 + +#: The radius (curvature) of the scrollbar handle in units of cell +#: width. Should be less than scrollbar_width. + +# scrollbar_gap 0.1 + +#: The gap between the scrollbar and the window edge in units of cell +#: width. + +# scrollbar_min_handle_height 1 + +#: The minimum height of the scrollbar handle in units of cell height. +#: Prevents the handle from becoming too small when there is a lot of +#: scrollback. + +# scrollbar_hitbox_expansion 0.25 + +#: The extra area around the handle to allow easier grabbing of the +#: scollbar in units of cell width. + +# scrollbar_track_opacity 0 + +#: The opacity of the scrollbar track, 0 being fully transparent and 1 +#: being full opaque. + +# scrollbar_track_hover_opacity 0.1 + +#: The opacity of the scrollbar track when the mouse is over the +#: scrollbar, 0 being fully transparent and 1 being full opaque. + +# scrollbar_handle_color foreground + +#: The color of the scrollbar handle. A value of foreground means to +#: use the current foreground text color, a value of +#: selection_background means to use the current selection background +#: color. Also, you can use an arbitrary color, such as #12af59 or +#: red. + +# scrollbar_track_color foreground + +#: The color of the scrollbar track. A value of foreground means to +#: use the current foreground text color, a value of +#: selection_background means to use the current selection background +#: color. Also, you can use an arbitrary color, such as #12af59 or +#: red. + +# scrollback_pager less --chop-long-lines --RAW-CONTROL-CHARS +INPUT_LINE_NUMBER + +#: Program with which to view scrollback in a new window. The +#: scrollback buffer is passed as STDIN to this program. If you change +#: it, make sure the program you use can handle ANSI escape sequences +#: for colors and text formatting. INPUT_LINE_NUMBER in the command +#: line above will be replaced by an integer representing which line +#: should be at the top of the screen. Similarly CURSOR_LINE and +#: CURSOR_COLUMN will be replaced by the current cursor position or +#: set to 0 if there is no cursor, for example, when showing the last +#: command output. + +#: If you would rather use neovim to view the scrollback, use +#: something like this:: + +#: scrollback_pager nvim --cmd 'set eventignore=FileType' +'nnoremap q ZQ' +'call nvim_open_term(0, {})' +'set nomodified nolist' +'$' - + +#: The above works for neovim 0.12 and newer. There is also a +#: dedicated plugin kitty-scrollback.nvim +#: you can use +#: with more features that works with older neovim as well. + +# scrollback_pager_history_size 0 + +#: Separate scrollback history size (in MB), used only for browsing +#: the scrollback buffer with pager. This separate buffer is not +#: available for interactive scrolling but will be piped to the pager +#: program when viewing scrollback buffer in a separate window. The +#: current implementation stores the data in UTF-8, so approximately +#: 10000 lines per megabyte at 100 chars per line, for pure ASCII, +#: unformatted text. A value of zero or less disables this feature. +#: The maximum allowed size is 4GB. Note that on config reload if this +#: is changed it will only affect newly created windows, not existing +#: ones. + +# scrollback_fill_enlarged_window no + +#: Fill new space with lines from the scrollback buffer after +#: enlarging a window. + +# wheel_scroll_multiplier 5.0 + +#: Multiplier for the number of lines scrolled by the mouse wheel. +#: Note that this is only used for low precision scrolling devices, +#: not for high precision scrolling devices on platforms such as macOS +#: and Wayland. Use negative numbers to change scroll direction. See +#: also wheel_scroll_min_lines. + +# wheel_scroll_min_lines 1 + +#: The minimum number of lines scrolled by the mouse wheel. The scroll +#: multiplier wheel_scroll_multiplier only takes effect after it +#: reaches this number. Note that this is only used for low precision +#: scrolling devices like wheel mice that scroll by very small amounts +#: when using the wheel. With a negative number, the minimum number of +#: lines will always be added. + +# touch_scroll_multiplier 1.0 + +#: Multiplier for the number of lines scrolled by a touchpad. Note +#: that this is only used for high precision scrolling devices on +#: platforms such as macOS and Wayland. Use negative numbers to change +#: scroll direction. + +#: }}} + +#: Mouse {{{ + +# mouse_hide_wait 3.0 + +#: Hide mouse cursor after the specified number of seconds of the +#: mouse not being used. Set to zero to disable mouse cursor hiding. +#: Set to a negative value to hide the mouse cursor immediately when +#: typing text. Disabled by default on macOS as getting it to work +#: robustly with the ever-changing sea of bugs that is Cocoa is too +#: much effort. + +#: By default, once the cursor is hidden, it is immediately unhidden +#: on any further mouse events. + +#: Two formats are supported: +#: - +#: - + +#: To change the unhide behavior, the optional parameters , , and may be set. + +#: +#: Waits for the specified number of seconds after mouse events before unhiding the +#: mouse cursor. Set to zero to unhide mouse cursor immediately on mouse activity. +#: This is useful to prevent the mouse cursor from unhiding on accidental swipes on +#: the trackpad. + +#: +#: Sets the threshold of mouse activity required to unhide the mouse cursor, when +#: the option is non-zero. When is zero, this has no +#: effect. + +#: For example, if is 40 and is 2.5, when kitty +#: detects a mouse event, it records the number of mouse events in the next 2.5 +#: seconds, and checks if that exceeds 40 * 2.5 = 100. If it does, then the mouse +#: cursor is unhidden, otherwise nothing happens. + +#: +#: Controls what mouse events may unhide the mouse cursor. If enabled, both scroll +#: and movement events may unhide the cursor. If disabled, only mouse movements can +#: unhide the cursor. + +#: Examples of valid values: +#: - 0.0 +#: - 1.0 +#: - -1.0 +#: - 0.1 3.0 40 yes + +# url_color #0087bd +# url_style curly + +#: The color and style for highlighting URLs on mouse-over. url_style +#: can be one of: none, straight, double, curly, dotted, dashed. + +# open_url_with default + +#: The program to open clicked URLs. The special value default will +#: first look for any URL handlers defined via the open_actions +#: facility and if non +#: are found, it will use the Operating System's default URL handler +#: (open on macOS and xdg-open on Linux). + +# url_prefixes file ftp ftps gemini git gopher http https irc ircs kitty mailto news sftp ssh + +#: The set of URL prefixes to look for when detecting a URL under the +#: mouse cursor. + +# detect_urls yes + +#: Detect URLs under the mouse. Detected URLs are highlighted with an +#: underline and the mouse cursor becomes a hand over them. Even if +#: this option is disabled, URLs are still clickable. See also the +#: underline_hyperlinks option to control how hyperlinks (as opposed +#: to plain text URLs) are displayed. + +# url_excluded_characters + +#: Additional characters to be disallowed from URLs, when detecting +#: URLs under the mouse cursor. By default, all characters that are +#: legal in URLs are allowed. Additionally, newlines are allowed (but +#: stripped). This is to accommodate programs such as mutt that add +#: hard line breaks even for continued lines. \n can be added to this +#: option to disable this behavior. Special characters can be +#: specified using backslash escapes, to specify a backslash use a +#: double backslash. + +# show_hyperlink_targets no + +#: When the mouse hovers over a terminal hyperlink, show the actual +#: URL that will be activated when the hyperlink is clicked. + +# underline_hyperlinks hover + +#: Control how hyperlinks are underlined. They can either be +#: underlined on mouse hover, always (i.e. permanently underlined) or +#: never which means that kitty will not apply any underline styling +#: to hyperlinks. Note that the value of always only applies to real +#: (OSC 8) hyperlinks not text that is detected to be a URL on mouse +#: hover. Uses the url_style and url_color settings for the underline +#: style. Note that reloading the config and changing this value +#: to/from always will only affect text subsequently received by +#: kitty. + +# copy_on_select no + +#: Copy to clipboard or a private buffer on select. With this set to +#: clipboard, selecting text with the mouse will cause the text to be +#: copied to clipboard. Useful on platforms such as macOS that do not +#: have the concept of primary selection. You can instead specify a +#: name such as a1 to copy to a private kitty buffer. Map a shortcut +#: with the paste_from_buffer action to paste from this private +#: buffer. For example:: + +#: copy_on_select a1 +#: map shift+cmd+v paste_from_buffer a1 + +#: Note that copying to the clipboard is a security risk, as all +#: programs, including websites open in your browser can read the +#: contents of the system clipboard. + +# clear_selection_on_clipboard_loss no + +#: When the contents of the clipboard no longer reflect the current +#: selection, clear it. This is primarily useful on platforms such as +#: Linux where selecting text automatically copies it to a special +#: "primary selection" clipboard or if you have copy_on_select set to +#: clipboard. + +#: Note that on macOS the system does not provide notifications when +#: the clipboard owner is changed, so there, copying to clipboard in a +#: non-kitty application will not clear selections even if +#: copy_on_select is enabled. + +# paste_actions quote-urls-at-prompt,confirm + +#: A comma separated list of actions to take when pasting text into +#: the terminal. The supported paste actions are: + +#: quote-urls-at-prompt: +#: If the text being pasted is a URL and the cursor is at a shell prompt, +#: automatically quote the URL (needs shell_integration). +#: replace-dangerous-control-codes +#: Replace dangerous control codes from pasted text, without confirmation. +#: replace-newline +#: Replace the newline character from pasted text, without confirmation. +#: confirm: +#: Confirm the paste if the text to be pasted contains any terminal control codes +#: as this can be dangerous, leading to code execution if the shell/program running +#: in the terminal does not properly handle these. +#: confirm-if-large +#: Confirm the paste if it is very large (larger than 16KB) as pasting +#: large amounts of text into shells can be very slow. +#: filter: +#: Run the filter_paste() function from the file paste-actions.py in +#: the kitty config directory on the pasted text. The text returned by the +#: function will be actually pasted. +#: no-op: +#: Has no effect. + +# strip_trailing_spaces never + +#: Remove spaces at the end of lines when copying to clipboard. A +#: value of smart will do it when using normal selections, but not +#: rectangle selections. A value of always will always do it. + +# select_by_word_characters @-./_~?&=%+# + +#: Characters considered part of a word when double clicking. In +#: addition to these characters any character that is marked as an +#: alphanumeric character in the Unicode database will be matched. + +# select_by_word_characters_forward + +#: Characters considered part of a word when extending the selection +#: forward on double clicking. In addition to these characters any +#: character that is marked as an alphanumeric character in the +#: Unicode database will be matched. + +#: If empty (default) select_by_word_characters will be used for both +#: directions. + +# click_interval -1.0 + +#: The interval between successive clicks to detect double/triple +#: clicks (in seconds). Negative numbers will use the system default +#: instead, if available, or fallback to 0.5. + +# focus_follows_mouse no + +#: Set the active window to the window under the mouse when moving the +#: mouse around. On macOS, this will also cause the OS Window under +#: the mouse to be focused automatically when the mouse enters it. + +# pointer_shape_when_grabbed arrow + +#: The shape of the mouse pointer when the program running in the +#: terminal grabs the mouse. + +# default_pointer_shape beam + +#: The default shape of the mouse pointer. + +# pointer_shape_when_dragging beam crosshair + +#: The default shape of the mouse pointer when dragging across text. +#: The optional second value sets the shape when dragging in +#: rectangular selection mode. + +#: Mouse actions {{{ + +#: Mouse buttons can be mapped to perform arbitrary actions. The +#: syntax is: + +#: .. code-block:: none + +#: mouse_map button-name event-type modes action + +#: Where button-name is one of left, middle, right, b1 ... b8 with +#: added keyboard modifiers. For example: ctrl+shift+left refers to +#: holding the Ctrl+Shift keys while clicking with the left mouse +#: button. The value b1 ... b8 can be used to refer to up to eight +#: buttons on a mouse. + +#: event-type is one of press, release, doublepress, triplepress, +#: click, doubleclick. modes indicates whether the action is performed +#: when the mouse is grabbed by the program running in the terminal, +#: or not. The values are grabbed or ungrabbed or a comma separated +#: combination of them. grabbed refers to when the program running in +#: the terminal has requested mouse events. Note that the click and +#: double click events have a delay of click_interval to disambiguate +#: from double and triple presses. + +#: You can run kitty with the kitty --debug-input command line option +#: to see mouse events. See the builtin actions below to get a sense +#: of what is possible. + +#: If you want to unmap a button, map it to nothing. For example, to +#: disable opening of URLs with a plain click:: + +#: mouse_map left click ungrabbed + +#: See all the mappable actions including mouse actions here +#: . + +#: .. note:: +#: Once a selection is started, releasing the button that started it will +#: automatically end it and no release event will be dispatched. + +# clear_all_mouse_actions no + +#: Remove all mouse action definitions up to this point. Useful, for +#: instance, to remove the default mouse actions. + +#: Click the link under the mouse or move the cursor + +# mouse_map left click ungrabbed mouse_handle_click selection link prompt + +#:: First check for a selection and if one exists do nothing. Then +#:: check for a link under the mouse cursor and if one exists, click +#:: it. Finally check if the click happened at the current shell +#:: prompt and if so, move the cursor to the click location. Note +#:: that this requires shell integration +#:: to work. + +#: Click the link under the mouse or move the cursor even when grabbed + +# mouse_map shift+left click grabbed,ungrabbed mouse_handle_click selection link prompt + +#:: Same as above, except that the action is performed even when the +#:: mouse is grabbed by the program running in the terminal. + +#: Click the link under the mouse cursor + +# mouse_map ctrl+shift+left release grabbed,ungrabbed mouse_handle_click link + +#:: Variant with Ctrl+Shift is present because the simple click based +#:: version has an unavoidable delay of click_interval, to +#:: disambiguate clicks from double clicks. + +#: Discard press event for link click + +# mouse_map ctrl+shift+left press grabbed discard_event + +#:: Prevent this press event from being sent to the program that has +#:: grabbed the mouse, as the corresponding release event is used to +#:: open a URL. + +#: Paste from the primary selection + +# mouse_map middle release ungrabbed paste_from_selection + +#: Start selecting text + +# mouse_map left press ungrabbed mouse_selection normal + +#: Start selecting text in a rectangle + +# mouse_map ctrl+alt+left press ungrabbed mouse_selection rectangle + +#: Select a word + +# mouse_map left doublepress ungrabbed mouse_selection word + +#: Select a line + +# mouse_map left triplepress ungrabbed mouse_selection line + +#: Select line from point + +# mouse_map ctrl+alt+left triplepress ungrabbed mouse_selection line_from_point + +#:: Select from the clicked point to the end of the line. If you +#:: would like to select the word at the point and then extend to the +#:: rest of the line, change `line_from_point` to +#:: `word_and_line_from_point`. + +#: Extend the current selection + +# mouse_map right press ungrabbed mouse_selection extend + +#:: If you want only the end of the selection to be moved instead of +#:: the nearest boundary, use move-end instead of extend. + +#: Paste from the primary selection even when grabbed + +# mouse_map shift+middle release ungrabbed,grabbed paste_selection +# mouse_map shift+middle press grabbed discard_event + +#: Start selecting text even when grabbed + +# mouse_map shift+left press ungrabbed,grabbed mouse_selection normal + +#: Start selecting text in a rectangle even when grabbed + +# mouse_map ctrl+shift+alt+left press ungrabbed,grabbed mouse_selection rectangle + +#: Select a word even when grabbed + +# mouse_map shift+left doublepress ungrabbed,grabbed mouse_selection word + +#: Select a line even when grabbed + +# mouse_map shift+left triplepress ungrabbed,grabbed mouse_selection line + +#: Select line from point even when grabbed + +# mouse_map ctrl+shift+alt+left triplepress ungrabbed,grabbed mouse_selection line_from_point + +#:: Select from the clicked point to the end of the line even when +#:: grabbed. If you would like to select the word at the point and +#:: then extend to the rest of the line, change `line_from_point` to +#:: `word_and_line_from_point`. + +#: Extend the current selection even when grabbed + +# mouse_map shift+right press ungrabbed,grabbed mouse_selection extend + +#: Show clicked command output in pager + +# mouse_map ctrl+shift+right press ungrabbed mouse_show_command_output + +#:: Requires shell integration +#:: to work. + +#: }}} + +#: }}} + +#: Performance tuning {{{ + +# repaint_delay 10 + +#: Delay between screen updates (in milliseconds). Decreasing it, +#: increases frames-per-second (FPS) at the cost of more CPU usage. +#: The default value yields ~100 FPS which is more than sufficient for +#: most uses. Note that to actually achieve 100 FPS, you have to +#: either set sync_to_monitor to no or use a monitor with a high +#: refresh rate. Also, to minimize latency when there is pending input +#: to be processed, this option is ignored. + +# input_delay 3 + +#: Delay before input from the program running in the terminal is +#: processed (in milliseconds). Note that decreasing it will increase +#: responsiveness, but also increase CPU usage and might cause flicker +#: in full screen programs that redraw the entire screen on each loop, +#: because kitty is so fast that partial screen updates will be drawn. +#: This setting is ignored when the input buffer is almost full. + +# sync_to_monitor yes + +#: Sync screen updates to the refresh rate of the monitor. This +#: prevents screen tearing +#: when scrolling. +#: However, it limits the rendering speed to the refresh rate of your +#: monitor. With a very high speed mouse/high keyboard repeat rate, +#: you may notice some slight input latency. If so, set this to no. + +#: }}} + +#: Terminal bell {{{ + +# enable_audio_bell yes + +#: The audio bell. Useful to disable it in environments that require +#: silence. + +# visual_bell_duration 0.0 + +#: The visual bell duration (in seconds). Flash the screen when a bell +#: occurs for the specified number of seconds. Set to zero to disable. +#: The flash is animated, fading in and out over the specified +#: duration. The easing function used for the fading can be +#: controlled. For example, 2.0 linear will casuse the flash to fade +#: in and out linearly. The default if unspecified is to use ease-in- +#: out which fades slowly at the start, middle and end. You can +#: specify different easing functions for the fade-in and fade-out +#: parts, like this: 2.0 ease-in linear. kitty supports all the CSS +#: easing functions . + +# visual_bell_color none + +#: The color used by visual bell. Set to none will fall back to +#: selection background color. If you feel that the visual bell is too +#: bright, you can set it to a darker color. + +# window_alert_on_bell yes + +#: Request window attention on bell. Makes the dock icon bounce on +#: macOS or the taskbar flash on Linux. + +# bell_on_tab "🔔 " + +#: Some text or a Unicode symbol to show on the tab if a window in the +#: tab that does not have focus has a bell. If you want to use leading +#: or trailing spaces, surround the text with quotes. See +#: tab_title_template for how this is rendered. + +#: For backwards compatibility, values of yes, y and true are +#: converted to the default bell symbol and no, n, false and none are +#: converted to the empty string. + +# command_on_bell none + +#: Program to run when a bell occurs. The environment variable +#: KITTY_CHILD_CMDLINE can be used to get the program running in the +#: window in which the bell occurred. + +# bell_path none + +#: Path to a sound file to play as the bell sound. If set to none, the +#: system default bell sound is used. Must be in a format supported by +#: the operating systems sound API, such as WAV or OGA on Linux +#: (libcanberra) or AIFF, MP3 or WAV on macOS (NSSound). Relative +#: paths are resolved with respect to the kitty config directory. + +# linux_bell_theme __custom + +#: The XDG Sound Theme kitty will use to play the bell sound. On +#: Wayland, when the compositor supports it, it is asked to play the +#: system default bell sound, and this setting has no effect. Note +#: that Hyprland claims to support this protocol, but does not +#: actually play a sound +#: . This setting +#: defaults to the custom theme name specified in the XDG Sound theme +#: specification , falling back to the default +#: freedesktop theme if it does not exist. To change your sound theme +#: desktop wide, create +#: :file:~/.local/share/sounds/__custom/index.theme` with the +#: contents: + +#: [Sound Theme] + +#: Inherits=name-of-the-sound-theme-you-want-to-use + +#: Replace name-of-the-sound-theme-you-want-to-use with the actual +#: theme name. Now all compliant applications should use sounds from +#: this theme. + +#: }}} + +#: Window layout {{{ + +# remember_window_size yes +# initial_window_width 640 +# initial_window_height 400 + +#: If enabled, the OS Window size will be remembered so that new +#: instances of kitty will have the same size as the previous +#: instance. If disabled, the OS Window will initially have size +#: configured by initial_window_width/height, in pixels. You can use a +#: suffix of "c" on the width/height values to have them interpreted +#: as number of cells instead of pixels. + +# remember_window_position no + +#: If enabled, the OS Window position will be remembered so that new +#: instances of kitty will have the same position as the previous +#: instance. If disabled, the OS Window will be placed by the window +#: manager. Note that remembering of position only works if the +#: underlying desktop environment/window manager supports it. It never +#: works on Wayland. See also kitty --position to specify the position +#: when launching kitty. + +# enabled_layouts * + +#: The enabled window layouts. A comma separated list of layout names. +#: The special value all means all layouts. The first listed layout +#: will be used as the startup layout. Default configuration is all +#: layouts in alphabetical order. For a list of available layouts, see +#: the layouts . + +# window_resize_step_cells 2 +# window_resize_step_lines 2 + +#: The step size (in units of cell width/cell height) to use when +#: resizing kitty windows in a layout with the shortcut +#: start_resizing_window. The cells value is used for horizontal +#: resizing, and the lines value is used for vertical resizing. + +# window_border_width 0.5pt + +#: The width of window borders. Can be either in pixels (px) or pts +#: (pt). Values in pts will be rounded to the nearest number of pixels +#: based on screen resolution. If not specified, the unit is assumed +#: to be pts. Note that borders are displayed only when more than one +#: window is visible. They are meant to separate multiple windows. + +# draw_minimal_borders yes + +#: Draw only the minimum borders needed. This means that only the +#: borders that separate the window from a neighbor are drawn. Note +#: that setting a non-zero window_margin_width overrides this and +#: causes all borders to be drawn. + +# draw_window_borders_for_single_window no + +#: Draw borders around a window even when there is only a single +#: window visible. When enabled and there is only a single window, +#: full borders are drawn around it (as if draw_minimal_borders is +#: false). The border will show in the active color when the window is +#: focused and the OS window has focus, and in the inactive color when +#: the OS window loses focus. This provides a clear visual indicator +#: of whether the kitty window is focused. When there are multiple +#: windows visible, this option has no effect and normal border +#: drawing rules apply. + +# window_margin_width 0 + +#: The window margin (in pts) (blank area outside the border). A +#: single value sets all four sides. Two values set the vertical and +#: horizontal sides. Three values set top, horizontal and bottom. Four +#: values set top, right, bottom and left. + +# single_window_margin_width -1 + +#: The window margin to use when only a single window is visible (in +#: pts). Negative values will cause the value of window_margin_width +#: to be used instead. A single value sets all four sides. Two values +#: set the vertical and horizontal sides. Three values set top, +#: horizontal and bottom. Four values set top, right, bottom and left. + +# window_padding_width 0 + +#: The window padding (in pts) (blank area between the text and the +#: window border). A single value sets all four sides. Two values set +#: the vertical and horizontal sides. Three values set top, horizontal +#: and bottom. Four values set top, right, bottom and left. + +# single_window_padding_width -1 + +#: The window padding to use when only a single window is visible (in +#: pts). Negative values will cause the value of window_padding_width +#: to be used instead. A single value sets all four sides. Two values +#: set the vertical and horizontal sides. Three values set top, +#: horizontal and bottom. Four values set top, right, bottom and left. + +# placement_strategy center + +#: When the window size is not an exact multiple of the cell size, the +#: cell area of the terminal window will have some extra padding on +#: the sides. You can control how that padding is distributed with +#: this option. Using a value of center means the cell area will be +#: placed centrally. A value of top-left means the padding will be +#: only at the bottom and right edges. The value can be one of: top- +#: left, top, top-right, left, center, right, bottom-left, bottom, +#: bottom-right. + +# active_border_color #00ff00 + +#: The color for the border of the active window. Set this to none to +#: not draw borders around the active window. + +# inactive_border_color #cccccc + +#: The color for the border of inactive windows. + +# bell_border_color #ff5a00 + +#: The color for the border of inactive windows in which a bell has +#: occurred. + +# inactive_text_alpha 1.0 + +#: Fade the text in inactive windows by the specified amount (a number +#: between zero and one, with zero being fully faded). + +# hide_window_decorations no + +#: Hide the window decorations (title-bar and window borders) with +#: yes. On macOS, titlebar-only and titlebar-and-corners can be used +#: to only hide the titlebar and the rounded corners. Whether this +#: works and exactly what effect it has depends on the window +#: manager/operating system. Note that the effects of changing this +#: option when reloading config are undefined. When using titlebar- +#: only, it is useful to also set window_margin_width and +#: placement_strategy to prevent the rounded corners from clipping +#: text. Or use titlebar-and-corners. + +# window_logo_path none + +#: Path to a logo image. Must be in PNG/JPEG/WEBP/GIF/TIFF/BMP format. +#: Relative paths are interpreted relative to the kitty config +#: directory. The logo is displayed in a corner of every kitty window. +#: The position is controlled by window_logo_position. Individual +#: windows can be configured to have different logos either using the +#: launch action or the remote control +#: facility. + +# window_logo_position bottom-right + +#: Where to position the window logo in the window. The value can be +#: one of: top-left, top, top-right, left, center, right, bottom-left, +#: bottom, bottom-right. + +# window_logo_alpha 0.5 + +#: The amount the logo should be faded into the background. With zero +#: being fully faded and one being fully opaque. + +# window_logo_scale 0 + +#: The percentage (0-100] of the window size to which the logo should +#: scale. Using a single number means the logo is scaled to that +#: percentage of the shortest window dimension, while preserving +#: aspect ratio of the logo image. + +#: Using two numbers means the width and height of the logo are scaled +#: to the respective percentage of the window's width and height. + +#: Using zero as the percentage disables scaling in that dimension. A +#: single zero (the default) disables all scaling of the window logo. + +# resize_debounce_time 0.1 0.5 + +#: The time to wait (in seconds) before asking the program running in +#: kitty to resize and redraw the screen during a live resize of the +#: OS window, when no new resize events have been received, i.e. when +#: resizing is either paused or finished. On platforms such as macOS, +#: where the operating system sends events corresponding to the start +#: and end of a live resize, the second number is used for redraw- +#: after-pause since kitty can distinguish between a pause and end of +#: resizing. On such systems the first number is ignored and redraw is +#: immediate after end of resize. On other systems only the first +#: number is used so that kitty is "ready" quickly after the end of +#: resizing, while not also continuously redrawing, to save energy. + +# resize_in_steps no + +#: Resize the OS window in steps as large as the cells, instead of +#: with the usual pixel accuracy. Combined with initial_window_width +#: and initial_window_height in number of cells, this option can be +#: used to keep the margins as small as possible when resizing the OS +#: window. Note that this does not currently work on Wayland. + +# visual_window_select_characters 1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ + +#: The list of characters for visual window selection. For example, +#: for selecting a window to focus on with focus_visible_window. The +#: value should be a series of unique numbers or alphabets, case +#: insensitive, from the set 0-9A-Z\-=[];',./\\`. Specify your +#: preference as a string of characters. + +# confirm_os_window_close -1 + +#: Ask for confirmation when closing an OS window or a tab with at +#: least this number of kitty windows in it by window manager (e.g. +#: clicking the window close button or pressing the operating system +#: shortcut to close windows) or by the close_tab action. A value of +#: zero disables confirmation. This confirmation also applies to +#: requests to quit the entire application (all OS windows, via the +#: quit action). Negative values are converted to positive ones, +#: however, with shell_integration enabled, using negative values +#: means windows sitting at a shell prompt are not counted, only +#: windows where some command is currently running. You can also have +#: backgrounded jobs prevent closing, by adding count-background to +#: the setting, for example: -1 count-background. Note that if you +#: want confirmation when closing individual windows, you can map the +#: close_window_with_confirmation action. + +#: }}} + +#: Tab bar {{{ + +# tab_bar_edge bottom + +#: The edge to show the tab bar on, top or bottom. + +# tab_bar_margin_width 0.0 + +#: The margin to the left and right of the tab bar (in pts). + +# tab_bar_margin_height 0.0 0.0 + +#: The margin above and below the tab bar (in pts). The first number +#: is the margin between the edge of the OS Window and the tab bar. +#: The second number is the margin between the tab bar and the +#: contents of the current tab. + +# tab_bar_style fade + +#: The tab bar style, can be one of: + +#: fade +#: Each tab's edges fade into the background color. (See also tab_fade) +#: slant +#: Tabs look like the tabs in a physical file. +#: separator +#: Tabs are separated by a configurable separator. (See also +#: tab_separator) +#: powerline +#: Tabs are shown as a continuous line with "fancy" separators. +#: (See also tab_powerline_style) +#: custom +#: A user-supplied Python function called draw_tab is loaded from the file +#: tab_bar.py in the kitty config directory. For examples of how to +#: write such a function, see the functions named draw_tab_with_* in +#: kitty's source code: kitty/tab_bar.py. See also +#: this discussion +#: for examples from kitty users. +#: hidden +#: The tab bar is hidden. If you use this, you might want to create +#: a mapping for the select_tab action which presents you with a list of +#: tabs and allows for easy switching to a tab. + +# tab_bar_filter + +#: A search expression . Only tabs that match this expression will +#: be shown in the tab bar. The currently active tab is always shown, +#: regardless of whether it matches or not. When using this option, +#: the tab bar may be displayed with less tabs than specified in +#: tab_bar_min_tabs, as evaluating the filter is expensive and is done +#: only at display time. This is most useful when using sessions +#: . An expression of +#: session:~ or session:^$ will show only tabs that belong to the +#: current session or no session. The various tab navigation actions +#: such as goto_tab, next_tab, previous_tab, etc. are automatically +#: restricted to work only on matching tabs. + +# tab_bar_align left + +#: The horizontal alignment of the tab bar, can be one of: left, +#: center, right. + +# tab_bar_min_tabs 2 + +#: The minimum number of tabs that must exist before the tab bar is +#: shown. + +# tab_switch_strategy previous + +#: The algorithm to use when switching to a tab when the current tab +#: is closed. The default of previous will switch to the last used +#: tab. A value of left will switch to the tab to the left of the +#: closed tab. A value of right will switch to the tab to the right of +#: the closed tab. A value of last will switch to the right-most tab. + +# tab_fade 0.25 0.5 0.75 1 + +#: Control how each tab fades into the background when using fade for +#: the tab_bar_style. Each number is an alpha (between zero and one) +#: that controls how much the corresponding cell fades into the +#: background, with zero being no fade and one being full fade. You +#: can change the number of cells used by adding/removing entries to +#: this list. + +# tab_separator " ┇" + +#: The separator between tabs in the tab bar when using separator as +#: the tab_bar_style. + +# tab_powerline_style angled + +#: The powerline separator style between tabs in the tab bar when +#: using powerline as the tab_bar_style, can be one of: angled, +#: slanted, round. + +# tab_activity_symbol none + +#: Some text or a Unicode symbol to show on the tab if a window in the +#: tab that does not have focus has some activity. If you want to use +#: leading or trailing spaces, surround the text with quotes. See +#: tab_title_template for how this is rendered. + +# tab_title_max_length 0 + +#: The maximum number of cells that can be used to render the text in +#: a tab. A value of zero means that no limit is applied. + +# tab_title_template "{fmt.fg.red}{bell_symbol}{activity_symbol}{fmt.fg.tab}{tab.last_focused_progress_percent}{title}" + +#: A template to render the tab title. The default just renders the +#: title with optional symbols for bell and activity. If you wish to +#: include the tab-index as well, use something like: {index}:{title}. +#: Useful if you have shortcuts mapped for goto_tab N. If you prefer +#: to see the index as a superscript, use {sup.index}. All data +#: available is: + +#: title +#: The current tab title. +#: index +#: The tab index usable with goto_tab N goto_tab shortcuts. +#: layout_name +#: The current layout name. +#: session_name +#: The name of the kitty session file from which this tab was created, if any. +#: active_session_name +#: The name of the kitty session file from which the active window in this tab was created, if any. +#: num_windows +#: The number of windows in the tab. +#: num_window_groups +#: The number of window groups (a window group is a window and all of its overlay windows) in the tab. +#: tab.active_wd +#: The working directory of the currently active window in the tab +#: (expensive, requires syscall). Use tab.active_oldest_wd to get +#: the directory of the oldest foreground process rather than the newest. +#: tab.active_exe +#: The name of the executable running in the foreground of the currently +#: active window in the tab (expensive, requires syscall). Use +#: tab.active_oldest_exe for the oldest foreground process. +#: max_title_length +#: The maximum title length available. +#: keyboard_mode +#: The name of the current keyboard mode or the empty string if no keyboard mode is active. +#: tab.last_focused_progress_percent +#: If a command running in a window reports the progress for a task, show this progress as a percentage +#: from the most recently focused window in the tab. Empty string if no progress is reported. +#: tab.progress_percent +#: If a command running in a window reports the progress for a task, show this progress as a percentage +#: from all windows in the tab, averaged. Empty string is no progress is reported. +#: custom +#: This will call a function named draw_title(data) from the file tab_bar.py placed in +#: the kitty config directory. The function will be passed a dictionary of data, the same data that +#: can be used in this template. It can then perform arbitrarily complex processing and return a string. +#: For example: tab_title_template "{custom}" will use the output of the function as the tab title. +#: Any print statements in the draw_title() will print to the STDOUT of the kitty process, useful +#: for debugging. + + +#: Note that formatting is done by Python's string formatting +#: machinery, so you can use, for instance, {layout_name[:2].upper()} +#: to show only the first two letters of the layout name, upper-cased. +#: If you want to style the text, you can use styling directives, for +#: example: +#: `{fmt.fg.red}red{fmt.fg.tab}normal{fmt.bg._00FF00}greenbg{fmt.bg.tab}`. +#: Similarly, for bold and italic: +#: `{fmt.bold}bold{fmt.nobold}normal{fmt.italic}italic{fmt.noitalic}`. +#: The 256 eight terminal colors can be used as `fmt.fg.color0` +#: through `fmt.fg.color255`. Note that for backward compatibility, if +#: {bell_symbol} or {activity_symbol} are not present in the template, +#: they are prepended to it. + +# active_tab_title_template none + +#: Template to use for active tabs. If not specified falls back to +#: tab_title_template. + +# active_tab_foreground #000 +# active_tab_background #eee +# active_tab_font_style bold-italic +# inactive_tab_foreground #444 +# inactive_tab_background #999 +# inactive_tab_font_style normal + +#: Tab bar colors and styles. + +# tab_bar_background none + +#: Background color for the tab bar. Defaults to using the terminal +#: background color. + +# tab_bar_margin_color none + +#: Color for the tab bar margin area. Defaults to using the terminal +#: background color for margins above and below the tab bar. For side +#: margins the default color is chosen to match the background color +#: of the neighboring tab. + +#: }}} + +#: Color scheme {{{ + +# foreground #dddddd +# background #000000 + +#: The foreground and background colors. + +background_opacity 0.5 + +#: The opacity of the terminal background color. A number between zero +#: and one, where one is opaque and zero is fully transparent. This +#: will only work if supported by the OS (for instance, when using a +#: compositor under X11). Note that it only sets the background +#: color's opacity in cells that have the same background color as the +#: default terminal background, so that things like the status bar in +#: vim, powerline prompts, etc. still look good. But it means that if +#: you use a color theme with a background color in your editor, it +#: will not be rendered as transparent. Instead you should change the +#: default background color in your kitty config and not use a +#: background color in the editor color scheme. Or use the escape +#: codes to set the terminals default colors in a shell script to +#: launch your editor. See also transparent_background_colors. Be +#: aware that using a value less than 1.0 is a (possibly significant) +#: performance hit. When using a low value for this setting, it is +#: desirable that you set the background color to a color the matches +#: the general color of the desktop background, for best text +#: rendering. Note also, that this setting does not apply to the +#: background_image, if any. The background image can itself have +#: transparency via its alpha channel if desired, and that will be +#: respected. + +#: If you want to dynamically change transparency of windows, set +#: dynamic_background_opacity to yes (this is off by default as it has +#: a performance cost). Changing this option when reloading the config +#: will only work if dynamic_background_opacity was enabled in the +#: original config. + +# background_blur 0 + +#: Set to a positive value to enable background blur (blurring of the +#: visuals behind a transparent window) on platforms that support it. +#: Only takes effect when background_opacity is less than one. On +#: macOS, this will also control the blur radius (amount of blurring). +#: Setting it to too high a value will cause severe performance issues +#: and/or rendering artifacts. Usually, values up to 64 work well. +#: Note that this might cause performance issues, depending on how the +#: platform implements it, so use with care. Currently supported on +#: macOS and KDE. + +# transparent_background_colors + +#: A space separated list of upto 7 colors, with opacity. When the +#: background color of a cell matches one of these colors, it is +#: rendered semi-transparent using the specified opacity. + +#: Useful in more complex UIs like editors where you could want more +#: than a single background color to be rendered as transparent, for +#: instance, for a cursor highlight line background or a highlighted +#: block. Terminal applications can set this color using The kitty +#: color control escape code. + +#: The syntax for specifying colors is: color@opacity, where the +#: @opacity part is optional. When unspecified, the value of +#: background_opacity is used. For example:: + +#: transparent_background_colors red@0.5 #00ff00@0.3 + +#: Note that you must also set background_opacity to something less +#: than 1 for this setting to work properly. + +# dynamic_background_opacity no + +#: Allow changing of the background_opacity dynamically, using either +#: keyboard shortcuts (increase_background_opacity and +#: decrease_background_opacity) or the remote control facility. +#: Changing this option by reloading the config is not supported. + +# background_image none + +#: Path to a background image. Must be in PNG/JPEG/WEBP/TIFF/GIF/BMP +#: format. Note that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_image_layout tiled + +#: Whether to tile, scale or clamp the background image. The value can +#: be one of tiled, mirror-tiled, scaled, clamped, centered or +#: cscaled. The scaled and cscaled values scale the image to the +#: window size, with cscaled preserving the image aspect ratio. Note +#: that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_image_linear no + +#: When background image is scaled, whether linear interpolation +#: should be used. Note that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_tint 0.0 + +#: How much to tint the background image by the background color. This +#: option makes it easier to read the text. Tinting is done using the +#: current background color for each window. This option applies only +#: if background_image is set. Note that when using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# background_tint_gaps 1.0 + +#: How much to tint the background image at the window gaps by the +#: background color, after applying background_tint. Since this is +#: multiplicative with background_tint, it can be used to lighten the +#: tint over the window gaps for a *separated* look. Note that when +#: using auto_color_scheme +#: +#: this option is overridden by the color scheme file and must be set +#: inside it to take effect. + +# dim_opacity 0.4 + +#: How much to dim text that has the DIM/FAINT attribute set. One +#: means no dimming and zero means fully dimmed (i.e. invisible). + +# selection_foreground #000000 +# selection_background #fffacd + +#: The foreground and background colors for text selected with the +#: mouse. Setting both of these to none will cause a "reverse video" +#: effect for selections, where the selection will be the cell text +#: color and the text will become the cell background color. Setting +#: only selection_foreground to none will cause the foreground color +#: to be used unchanged. Note that these colors can be overridden by +#: the program running in the terminal. + +#: The color table {{{ + +#: The 256 terminal colors. There are 8 basic colors, each color has a +#: dull and bright version, for the first 16 colors. You can set the +#: remaining 240 colors as color16 to color255. + +# color0 #000000 +# color8 #767676 + +#: black + +# color1 #cc0403 +# color9 #f2201f + +#: red + +# color2 #19cb00 +# color10 #23fd00 + +#: green + +# color3 #cecb00 +# color11 #fffd00 + +#: yellow + +# color4 #0d73cc +# color12 #1a8fff + +#: blue + +# color5 #cb1ed1 +# color13 #fd28ff + +#: magenta + +# color6 #0dcdcd +# color14 #14ffff + +#: cyan + +# color7 #dddddd +# color15 #ffffff + +#: white + +# mark1_foreground black + +#: Color for marks of type 1 + +# mark1_background #98d3cb + +#: Color for marks of type 1 (light steel blue) + +# mark2_foreground black + +#: Color for marks of type 2 + +# mark2_background #f2dcd3 + +#: Color for marks of type 1 (beige) + +# mark3_foreground black + +#: Color for marks of type 3 + +# mark3_background #f274bc + +#: Color for marks of type 3 (violet) + +#: }}} + +#: }}} + +#: Advanced {{{ + +# shell . + +#: The shell program to execute. The default value of . means to use +#: the value of of the SHELL environment variable or if unset, +#: whatever shell is set as the default shell for the current user. +#: Note that on macOS if you change this, you might need to add +#: --login and --interactive to ensure that the shell starts in +#: interactive mode and reads its startup rc files. Environment +#: variables are expanded in this setting. + +# editor . + +#: The terminal based text editor (such as vim or nano) to use when +#: editing the kitty config file or similar tasks. + +#: The default value of . means to use the environment variables +#: VISUAL and EDITOR in that order. If these variables aren't set, +#: kitty will run your shell ($SHELL -l -i -c env) to see if your +#: shell startup rc files set VISUAL or EDITOR. If that doesn't work, +#: kitty will cycle through various known editors (vim, emacs, etc.) +#: and take the first one that exists on your system. + +# close_on_child_death no + +#: Close the window when the child process (usually the shell) exits. +#: With the default value no, the terminal will remain open when the +#: child exits as long as there are still other processes outputting +#: to the terminal (for example disowned or backgrounded processes). +#: When enabled with yes, the window will close as soon as the child +#: process exits. Note that setting it to yes means that any +#: background processes still using the terminal can fail silently +#: because their stdout/stderr/stdin no longer work. + +# remote_control_password + +#: Allow other programs to control kitty using passwords. This option +#: can be specified multiple times to add multiple passwords. If no +#: passwords are present kitty will ask the user for permission if a +#: program tries to use remote control with a password. A password can +#: also *optionally* be associated with a set of allowed remote +#: control actions. For example:: + +#: remote_control_password "my passphrase" get-colors set-colors focus-window focus-tab + +#: Only the specified actions will be allowed when using this +#: password. Glob patterns can be used too, for example:: + +#: remote_control_password "my passphrase" set-tab-* resize-* + +#: To get a list of available actions, run:: + +#: kitten @ --help + +#: A set of actions to be allowed when no password is sent can be +#: specified by using an empty password. For example:: + +#: remote_control_password "" *-colors + +#: Finally, the path to a python module can be specified that provides +#: a function is_cmd_allowed that is used to check every remote +#: control command. For example:: + +#: remote_control_password "my passphrase" my_rc_command_checker.py + +#: Relative paths are resolved from the kitty configuration directory. +#: See rc_custom_auth for details. + +# allow_remote_control no + +#: Allow other programs to control kitty. If you turn this on, other +#: programs can control all aspects of kitty, including sending text +#: to kitty windows, opening new windows, closing windows, reading the +#: content of windows, etc. Note that this even works over SSH +#: connections. The default setting of no prevents any form of remote +#: control. The meaning of the various values are: + +#: password +#: Remote control requests received over both the TTY device and the socket +#: are confirmed based on passwords, see remote_control_password. + +#: socket-only +#: Remote control requests received over a socket are accepted +#: unconditionally. Requests received over the TTY are denied. +#: See listen_on. + +#: socket +#: Remote control requests received over a socket are accepted +#: unconditionally. Requests received over the TTY are confirmed based on +#: password. + +#: no +#: Remote control is completely disabled. + +#: yes +#: Remote control requests are always accepted. + +# listen_on none + +#: Listen to the specified socket for remote control connections. Note +#: that this will apply to all kitty instances. It can be overridden +#: by the kitty --listen-on command line option. For UNIX sockets, +#: such as unix:${TEMP}/mykitty or unix:@mykitty (on Linux). +#: Environment variables are expanded and relative paths are resolved +#: with respect to the temporary directory. If {kitty_pid} is present, +#: then it is replaced by the PID of the kitty process, otherwise the +#: PID of the kitty process is appended to the value, with a hyphen. +#: For TCP sockets such as tcp:localhost:0 a random port is always +#: used even if a non-zero port number is specified. See the help for +#: kitty --listen-on for more details. Note that this will be ignored +#: unless allow_remote_control is set to either: yes, socket or +#: socket-only. Changing this option by reloading the config is not +#: supported. + +# env + +#: Specify the environment variables to be set in all child processes. +#: Using the name with an equal sign (e.g. env VAR=) will set it to +#: the empty string. Specifying only the name (e.g. env VAR) will +#: remove the variable from the child process' environment. Note that +#: environment variables are expanded recursively, for example:: + +#: env VAR1=a +#: env VAR2=${HOME}/${VAR1}/b + +#: The value of VAR2 will be /a/b. + +#: Use the special value read_from_shell to have kitty read the +#: specified variables from your login shell shell configuration. +#: Useful if your shell startup files setup a bunch of environment +#: variables that you want available to kitty and in kitty session +#: files. Each variable name is treated as a glob pattern to match. +#: For example: env read_from_shell=PATH LANG LC_* XDG_* EDITOR +#: VISUAL. Note that these variables are only read after the +#: configuration is fully processed, thus they are not available for +#: recursive expansion and they will override any variables set by +#: other env directives. + +# filter_notification + +#: Specify rules to filter out notifications sent by applications +#: running in kitty. Can be specified multiple times to create +#: multiple filter rules. A rule specification is of the form +#: field:regexp. A filter rule can match on any of the fields: title, +#: body, app, type. The special value of all filters out all +#: notifications. Rules can be combined using Boolean operators. Some +#: examples:: + +#: filter_notification title:hello or body:"abc.*def" +#: # filter out notification from vim except for ones about updates, (?i) +#: # makes matching case insensitive. +#: filter_notification app:"[ng]?vim" and not body:"(?i)update" +#: # filter out all notifications +#: filter_notification all + +#: The field app is the name of the application sending the +#: notification and type is the type of the notification. Not all +#: applications will send these fields, so you can also match on the +#: title and body of the notification text. More sophisticated +#: programmatic filtering and custom actions on notifications can be +#: done by creating a notifications.py file in the kitty config +#: directory (~/.config/kitty). An annotated sample is available +#: . + +# watcher + +#: Path to python file which will be loaded for watchers +#: . Can be +#: specified more than once to load multiple watchers. The watchers +#: will be added to every kitty window. Relative paths are resolved +#: relative to the kitty config directory. Note that reloading the +#: config will only affect windows created after the reload. + +# exe_search_path + +#: Control where kitty finds the programs to run. The default search +#: order is: First search the system wide PATH, then ~/.local/bin and +#: ~/bin. If still not found, the PATH defined in the login shell +#: after sourcing all its startup files is tried. Finally, if present, +#: the PATH specified by the env option is tried. + +#: This option allows you to prepend, append, or remove paths from +#: this search order. It can be specified multiple times for multiple +#: paths. A simple path will be prepended to the search order. A path +#: that starts with the + sign will be append to the search order, +#: after ~/bin above. A path that starts with the - sign will be +#: removed from the entire search order. For example:: + +#: exe_search_path /some/prepended/path +#: exe_search_path +/some/appended/path +#: exe_search_path -/some/excluded/path + +# update_check_interval 24 + +#: The interval to periodically check if an update to kitty is +#: available (in hours). If an update is found, a system notification +#: is displayed informing you of the available update. The default is +#: to check every 24 hours, set to zero to disable. Update checking is +#: only done by the official binary builds. Distro packages or source +#: builds do not do update checking. Changing this option by reloading +#: the config is not supported. + +# startup_session none + +#: Path to a session file to use for all kitty instances. Can be +#: overridden by using the kitty --session =none command line option +#: for individual instances. See sessions +#: in the kitty +#: documentation for details. Note that relative paths are interpreted +#: with respect to the kitty config directory. Environment variables +#: in the path are expanded. Changing this option by reloading the +#: config is not supported. Note that if kitty is invoked with command +#: line arguments specifying a command to run, this option is ignored. + +# clipboard_control write-clipboard write-primary read-clipboard-ask read-primary-ask + +#: Allow programs running in kitty to read and write from the +#: clipboard. You can control exactly which actions are allowed. The +#: possible actions are: write-clipboard, read-clipboard, write- +#: primary, read-primary, read-clipboard-ask, read-primary-ask. The +#: default is to allow writing to the clipboard and primary selection +#: and to ask for permission when a program tries to read from the +#: clipboard. Note that disabling the read confirmation is a security +#: risk as it means that any program, even the ones running on a +#: remote server via SSH can read your clipboard. See also +#: clipboard_max_size. + +# clipboard_max_size 512 + +#: The maximum size (in MB) of data from programs running in kitty +#: that will be stored for writing to the system clipboard. A value of +#: zero means no size limit is applied. See also clipboard_control. + +# file_transfer_confirmation_bypass + +#: The password that can be supplied to the file transfer kitten +#: to skip the +#: transfer confirmation prompt. This should only be used when +#: initiating transfers from trusted computers, over trusted networks +#: or encrypted transports, as it allows any programs running on the +#: remote machine to read/write to the local filesystem, without +#: permission. + +# allow_hyperlinks yes + +#: Process hyperlink escape sequences (OSC 8). If disabled OSC 8 +#: escape sequences are ignored. Otherwise they become clickable +#: links, that you can click with the mouse or by using the hints +#: kitten . The +#: special value of ask means that kitty will ask before opening the +#: link when clicked. + +# shell_integration enabled + +#: Enable shell integration on supported shells. This enables features +#: such as jumping to previous prompts, browsing the output of the +#: previous command in a pager, etc. on supported shells. Set to +#: disabled to turn off shell integration, completely. It is also +#: possible to disable individual features, set to a space separated +#: list of these values: no-rc, no-cursor, no-title, no-cwd, no- +#: prompt-mark, no-complete, no-sudo. See Shell integration +#: for details. + +# allow_cloning ask + +#: Control whether programs running in the terminal can request new +#: windows to be created. The canonical example is clone-in-kitty +#: . +#: By default, kitty will ask for permission for each clone request. +#: Allowing cloning unconditionally gives programs running in the +#: terminal (including over SSH) permission to execute arbitrary code, +#: as the user who is running the terminal, on the computer that the +#: terminal is running on. + +# clone_source_strategies venv,conda,env_var,path + +#: Control what shell code is sourced when running clone-in-kitty in +#: the newly cloned window. The supported strategies are: + +#: venv +#: Source the file $VIRTUAL_ENV/bin/activate. This is used by the +#: Python stdlib venv module and allows cloning venvs automatically. +#: conda +#: Run conda activate $CONDA_DEFAULT_ENV. This supports the virtual +#: environments created by conda. +#: env_var +#: Execute the contents of the environment variable +#: KITTY_CLONE_SOURCE_CODE with eval. +#: path +#: Source the file pointed to by the environment variable +#: KITTY_CLONE_SOURCE_PATH. + +#: This option must be a comma separated list of the above values. +#: Only the first valid match, in the order specified, is sourced. + +# notify_on_cmd_finish never + +#: Show a desktop notification when a long-running command finishes +#: (needs shell_integration). The possible values are: + +#: never +#: Never send a notification. + +#: unfocused +#: Only send a notification when the window does not have keyboard focus. + +#: invisible +#: Only send a notification when the window both is unfocused and not visible +#: to the user, for example, because it is in an inactive tab or its OS window +#: is not currently visible (on platforms that support OS window visibility querying +#: this considers an OS Window visible iff it is active). + +#: always +#: Always send a notification, regardless of window state. + +#: There are two optional arguments: + +#: First, the minimum duration for what is considered a long running +#: command. The default is 5 seconds. Specify a second argument to set +#: the duration. For example: invisible 15. Do not set the value too +#: small, otherwise a command that launches a new OS Window and exits +#: will spam a notification. + +#: Second, the action to perform. The default is notify. The possible +#: values are: + +#: notify +#: Send a desktop notification. The subsequent arguments are optional and specify when +#: the notification is automatically cleared. The set of possible events when the notification is +#: cleared are: focus and next. focus means that when the notification +#: policy is unfocused or invisible the notification is automatically cleared +#: when the window regains focus. The value of next means that the previous notification +#: is cleared when the next notification is shown. The default when no arguments are specified +#: is: focus next. + +#: bell +#: Ring the terminal bell. + +#: notify-bell +#: Send a desktop notification and ring the terminal bell. +#: The arguments are the same as for `notify`. + +#: command +#: Run a custom command. All subsequent arguments are the cmdline to run. + +#: Some more examples:: + +#: # Send a notification when a command takes more than 5 seconds in an unfocused window +#: notify_on_cmd_finish unfocused +#: # Send a notification when a command takes more than 10 seconds in a invisible window +#: notify_on_cmd_finish invisible 10.0 +#: # Ring a bell when a command takes more than 10 seconds in a invisible window +#: notify_on_cmd_finish invisible 10.0 bell +#: # Run 'notify-send' when a command takes more than 10 seconds in a invisible window +#: # Here %c is replaced by the current command line and %s by the job exit code +#: notify_on_cmd_finish invisible 10.0 command notify-send "job finished with status: %s" %c +#: # Do not clear previous notification when next command finishes or window regains focus +#: notify_on_cmd_finish invisible 5.0 notify + +# term xterm-kitty + +#: The value of the TERM environment variable to set. Changing this +#: can break many terminal programs, only change it if you know what +#: you are doing, not because you read some advice on "Stack Overflow" +#: to change it. The TERM variable is used by various programs to get +#: information about the capabilities and behavior of the terminal. If +#: you change it, depending on what programs you run, and how +#: different the terminal you are changing it to is, various things +#: from key-presses, to colors, to various advanced features may not +#: work. Changing this option by reloading the config will only affect +#: newly created windows. + +# terminfo_type path + +#: The value of the TERMINFO environment variable to set. This +#: variable is used by programs running in the terminal to search for +#: terminfo databases. The default value of path causes kitty to set +#: it to a filesystem location containing the kitty terminfo database. +#: A value of direct means put the entire database into the env var +#: directly. This can be useful when connecting to containers, for +#: example. But, note that not all software supports this. A value of +#: none means do not touch the variable. + +# forward_stdio no + +#: Forward STDOUT and STDERR of the kitty process to child processes. +#: This is useful for debugging as it allows child processes to print +#: to kitty's STDOUT directly. For example, echo hello world +#: >&$KITTY_STDIO_FORWARDED in a shell will print to the parent +#: kitty's STDOUT. Sets the KITTY_STDIO_FORWARDED=fdnum environment +#: variable so child processes know about the forwarding. Note that on +#: macOS this prevents the shell from being run via the login utility +#: so getlogin() will not work in programs run in this session. + +# menu_map + +#: Specify entries for various menus in kitty. Currently only the +#: global menubar on macOS is supported. For example:: + +#: menu_map global "Actions::Launch something special" launch --hold --type=os-window sh -c "echo hello world" + +#: This will create a menu entry named "Launch something special" in +#: an "Actions" menu in the macOS global menubar. Sub-menus can be +#: created by adding more levels separated by the :: characters. + +#: }}} + +#: OS specific tweaks {{{ + +# wayland_titlebar_color system + +#: The color of the kitty window's titlebar on Wayland systems with +#: client side window decorations such as GNOME. A value of system +#: means to use the default system colors, a value of background means +#: to use the background color of the currently active kitty window +#: and finally you can use an arbitrary color, such as #12af59 or red. + +# macos_titlebar_color system + +#: The color of the kitty window's titlebar on macOS. A value of +#: system means to use the default system color, light or dark can +#: also be used to set it explicitly. A value of background means to +#: use the background color of the currently active window and finally +#: you can use an arbitrary color, such as #12af59 or red. + +# macos_option_as_alt no + +#: Use the Option key as an Alt key on macOS. With this set to no, +#: kitty will use the macOS native Option+Key to enter Unicode +#: character behavior. This will break any Alt+Key keyboard shortcuts +#: in your terminal programs, but you can use the macOS Unicode input +#: technique. You can use the values: left, right or both to use only +#: the left, right or both Option keys as Alt, instead. Note that +#: kitty itself always treats Option the same as Alt. This means you +#: cannot use this option to configure different kitty shortcuts for +#: Option+Key vs. Alt+Key. Also, any kitty shortcuts using +#: Option/Alt+Key will take priority, so that any such key presses +#: will not be passed to terminal programs running inside kitty. +#: Changing this option by reloading the config is not supported. + +# macos_hide_from_tasks no + +#: Hide the kitty window from running tasks on macOS (⌘+Tab and the +#: Dock). Changing this option by reloading the config is not +#: supported. + +# macos_quit_when_last_window_closed no + +#: Have kitty quit when all the top-level windows are closed on macOS. +#: By default, kitty will stay running, even with no open windows, as +#: is the expected behavior on macOS. + +# macos_window_resizable yes + +#: Disable this if you want kitty top-level OS windows to not be +#: resizable on macOS. + +# macos_thicken_font 0 + +#: Draw an extra border around the font with the given width, to +#: increase legibility at small font sizes on macOS. For example, a +#: value of 0.75 will result in rendering that looks similar to sub- +#: pixel antialiasing at common font sizes. Note that in modern kitty, +#: this option is obsolete (although still supported). Consider using +#: text_composition_strategy instead. + +# macos_traditional_fullscreen no + +#: Use the macOS traditional full-screen transition, that is faster, +#: but less pretty. + +# macos_show_window_title_in all + +#: Control where the window title is displayed on macOS. A value of +#: window will show the title of the currently active window at the +#: top of the macOS window. A value of menubar will show the title of +#: the currently active window in the macOS global menu bar, making +#: use of otherwise wasted space. A value of all will show the title +#: in both places, and none hides the title. See +#: macos_menubar_title_max_length for how to control the length of the +#: title in the menu bar. + +# macos_menubar_title_max_length 0 + +#: The maximum number of characters from the window title to show in +#: the macOS global menu bar. Values less than one means that there is +#: no maximum limit. + +# macos_custom_beam_cursor no + +#: Use a custom mouse cursor for macOS that is easier to see on both +#: light and dark backgrounds. Nowadays, the default macOS cursor +#: already comes with a white border. WARNING: this might make your +#: mouse cursor invisible on dual GPU machines. Changing this option +#: by reloading the config is not supported. + +# macos_colorspace srgb + +#: The colorspace in which to interpret terminal colors. The default +#: of srgb will cause colors to match those seen in web browsers. The +#: value of default will use whatever the native colorspace of the +#: display is. The value of displayp3 will use Apple's special +#: snowflake display P3 color space, which will result in over +#: saturated (brighter) colors with some color shift. Reloading +#: configuration will change this value only for newly created OS +#: windows. + +# linux_display_server auto + +#: Choose between Wayland and X11 backends. By default, an appropriate +#: backend based on the system state is chosen automatically. Set it +#: to x11 or wayland to force the choice. Changing this option by +#: reloading the config is not supported. + +# wayland_enable_ime yes + +#: Enable Input Method Extension on Wayland. This is typically used +#: for inputting text in East Asian languages. However, its +#: implementation in Wayland is often buggy and introduces latency +#: into the input loop, so disable this if you know you dont need it. +#: Changing this option by reloading the config is not supported, it +#: will not have any effect. + +#: }}} + +#: Keyboard shortcuts {{{ + +#: Keys are identified simply by their lowercase Unicode characters. +#: For example: a for the A key, [ for the left square bracket key, +#: etc. For functional keys, such as Enter or Escape, the names are +#: present at Functional key definitions +#: . +#: For modifier keys, the names are ctrl (control, ⌃), shift (⇧), alt +#: (opt, option, ⌥), super (cmd, command, ⌘). + +#: Simple shortcut mapping is done with the map directive. For full +#: details on advanced mapping including modal and per application +#: maps, see mapping . Some +#: quick examples to illustrate common tasks:: + +#: # unmap a keyboard shortcut, passing it to the program running in kitty +#: map kitty_mod+space +#: # completely ignore a keyboard event +#: map ctrl+alt+f1 discard_event +#: # combine multiple actions +#: map kitty_mod+e combine : new_window : next_layout +#: # multi-key shortcuts +#: map ctrl+x>ctrl+y>z action + +#: The full list of actions that can be mapped to key presses is +#: available here . + +# kitty_mod ctrl+shift + +#: Special modifier key alias for default shortcuts. You can change +#: the value of this option to alter all default shortcuts that use +#: kitty_mod. + +# clear_all_shortcuts no + +#: Remove all shortcut definitions up to this point. Useful, for +#: instance, to remove the default shortcuts. + +# action_alias + +#: E.g. action_alias launch_tab launch --type=tab --cwd=current + +#: Define action aliases to avoid repeating the same options in +#: multiple mappings. Aliases can be defined for any action and will +#: be expanded recursively. For example, the above alias allows you to +#: create mappings to launch a new tab in the current working +#: directory without duplication:: + +#: map f1 launch_tab vim +#: map f2 launch_tab emacs + +#: Similarly, to alias kitten invocation:: + +#: action_alias hints kitten hints --hints-offset=0 + +# kitten_alias + +#: E.g. kitten_alias hints hints --hints-offset=0 + +#: Like action_alias above, but specifically for kittens. Generally, +#: prefer to use action_alias. This option is a legacy version, +#: present for backwards compatibility. It causes all invocations of +#: the aliased kitten to be substituted. So the example above will +#: cause all invocations of the hints kitten to have the --hints- +#: offset=0 option applied. + +#: Clipboard {{{ + +#: Copy to clipboard + +# map kitty_mod+c copy_to_clipboard + +#:: There is also a copy_or_interrupt action that can be optionally +#:: mapped to Ctrl+C. It will copy only if there is a selection and +#:: send an interrupt otherwise. Similarly, +#:: copy_and_clear_or_interrupt will copy and clear the selection or +#:: send an interrupt if there is no selection. The copy_or_noop +#:: action will copy if there is a selection and pass the key through +#:: to the application running in the terminal if there is no +#:: selection. + +#: Copy to clipboard or pass through + +# map cmd+c copy_or_noop + +#: Paste from clipboard + +# map kitty_mod+v paste_from_clipboard +# map cmd+v paste_from_clipboard + +#: Paste from selection + +# map kitty_mod+s paste_from_selection +# map shift+insert paste_from_selection + +#: Pass selection to program + +# map kitty_mod+o pass_selection_to_program + +#:: You can also pass the contents of the current selection to any +#:: program with pass_selection_to_program. By default, the system's +#:: open program is used, but you can specify your own, the selection +#:: will be passed as a command line argument to the program. For +#:: example:: + +#:: map kitty_mod+o pass_selection_to_program firefox + +#:: You can pass the current selection to a terminal program running +#:: in a new kitty window, by using the @selection placeholder:: + +#:: map kitty_mod+y new_window less @selection + +#: }}} + +#: Scrolling {{{ + +#: Scroll line up + +# map kitty_mod+up scroll_line_up +# map kitty_mod+k scroll_line_up +# map opt+cmd+page_up scroll_line_up +# map cmd+up scroll_line_up + +#: Scroll line down + +# map kitty_mod+down scroll_line_down +# map kitty_mod+j scroll_line_down +# map opt+cmd+page_down scroll_line_down +# map cmd+down scroll_line_down + +#: Scroll page up + +# map kitty_mod+page_up scroll_page_up +# map cmd+page_up scroll_page_up + +#: Scroll page down + +# map kitty_mod+page_down scroll_page_down +# map cmd+page_down scroll_page_down + +#: Scroll to top + +# map kitty_mod+home scroll_home +# map cmd+home scroll_home + +#: Scroll to bottom + +# map kitty_mod+end scroll_end +# map cmd+end scroll_end + +#: Scroll to previous shell prompt + +# map kitty_mod+z scroll_to_prompt -1 + +#:: Use a parameter of 0 for scroll_to_prompt to scroll to the last +#:: jumped to or the last clicked position. Requires shell +#:: integration +#:: to work. + +#: Scroll to next shell prompt + +# map kitty_mod+x scroll_to_prompt 1 + +#: Browse scrollback buffer in pager + +# map kitty_mod+h show_scrollback + +#:: You can pipe the contents of the current screen and history +#:: buffer as STDIN to an arbitrary program using launch --stdin- +#:: source. For example, the following opens the scrollback buffer in +#:: less in an overlay window:: + +#:: map f1 launch --stdin-source=@screen_scrollback --stdin-add-formatting --type=overlay less +G -R + +#:: For more details on piping screen and buffer contents to external +#:: programs, see launch . + +#: Browse output of the last shell command in pager + +# map kitty_mod+g show_last_command_output + +#:: You can also define additional shortcuts to get the command +#:: output. For example, to get the first command output on screen:: + +#:: map f1 show_first_command_output_on_screen + +#:: To get the command output that was last accessed by a keyboard +#:: action or mouse action:: + +#:: map f1 show_last_visited_command_output + +#:: You can pipe the output of the last command run in the shell +#:: using the launch action. For example, the following opens the +#:: output in less in an overlay window:: + +#:: map f1 launch --stdin-source=@last_cmd_output --stdin-add-formatting --type=overlay less +G -R + +#:: To get the output of the first command on the screen, use +#:: @first_cmd_output_on_screen. To get the output of the last jumped +#:: to command, use @last_visited_cmd_output. + +#:: Requires shell integration +#:: to work. + +#: Search the scrollback within a pager + +# map kitty_mod+/ search_scrollback +# map cmd+f search_scrollback + +#:: Search for currently selected text in the scrollback using the +#:: configured scrollback_pager. Assumes that pressing the / key +#:: triggers search mode in the pager. If you want to create a manual +#:: mapping with a special pager for this, you can use something +#:: like: + +#:: map f1 combine : launch --stdin-source=@screen_scrollback --stdin-add-formatting --type=overlay mypager : send_key / + +#:: For more sophisticated control, such as using the current +#:: selection, use remote_control_script. + +#: }}} + +#: Window management {{{ + +#: New window + +# map kitty_mod+enter new_window +# map cmd+enter new_window + +#:: You can open a new kitty window running an arbitrary program, for +#:: example:: + +#:: map kitty_mod+y launch mutt + +#:: You can open a new window with the current working directory set +#:: to the working directory of the current window using:: + +#:: map ctrl+alt+enter launch --cwd=current + +#:: You can open a new window that is allowed to control kitty via +#:: the kitty remote control facility with launch --allow-remote- +#:: control. Any programs running in that window will be allowed to +#:: control kitty. For example:: + +#:: map ctrl+enter launch --allow-remote-control some_program + +#:: You can open a new window next to the currently active window or +#:: as the first window, with:: + +#:: map ctrl+n launch --location=neighbor +#:: map ctrl+f launch --location=first + +#:: For more details, see launch +#:: . + +#: New OS window + +# map kitty_mod+n new_os_window +# map cmd+n new_os_window + +#:: Works like new_window above, except that it opens a top-level OS +#:: window. In particular you can use new_os_window_with_cwd to open +#:: a window with the current working directory. + +#: Close window + +# map kitty_mod+w close_window +# map shift+cmd+d close_window + +#: Next window + +# map kitty_mod+] next_window + +#: Previous window + +# map kitty_mod+[ previous_window + +#: Move window forward + +# map kitty_mod+f move_window_forward + +#: Move window backward + +# map kitty_mod+b move_window_backward + +#: Move window to top + +# map kitty_mod+` move_window_to_top + +#: Start resizing window + +# map kitty_mod+r start_resizing_window +# map cmd+r start_resizing_window + +#: First window + +# map kitty_mod+1 first_window +# map cmd+1 first_window + +#: Second window + +# map kitty_mod+2 second_window +# map cmd+2 second_window + +#: Third window + +# map kitty_mod+3 third_window +# map cmd+3 third_window + +#: Fourth window + +# map kitty_mod+4 fourth_window +# map cmd+4 fourth_window + +#: Fifth window + +# map kitty_mod+5 fifth_window +# map cmd+5 fifth_window + +#: Sixth window + +# map kitty_mod+6 sixth_window +# map cmd+6 sixth_window + +#: Seventh window + +# map kitty_mod+7 seventh_window +# map cmd+7 seventh_window + +#: Eighth window + +# map kitty_mod+8 eighth_window +# map cmd+8 eighth_window + +#: Ninth window + +# map kitty_mod+9 ninth_window +# map cmd+9 ninth_window + +#: Tenth window + +# map kitty_mod+0 tenth_window + +#: Visually select and focus window + +# map kitty_mod+f7 focus_visible_window + +#:: Display overlay numbers and alphabets on the window, and switch +#:: the focus to the window when you press the key. When there are +#:: only two windows, the focus will be switched directly without +#:: displaying the overlay. You can change the overlay characters and +#:: their order with option visual_window_select_characters. + +#: Visually swap window with another + +# map kitty_mod+f8 swap_with_window + +#:: Works like focus_visible_window above, but swaps the window. + +#: }}} + +#: Tab management {{{ + +#: Next tab + +# map kitty_mod+right next_tab +# map shift+cmd+] next_tab +# map ctrl+tab next_tab + +#: Previous tab + +# map kitty_mod+left previous_tab +# map shift+cmd+[ previous_tab +# map ctrl+shift+tab previous_tab + +#: New tab + +# map kitty_mod+t new_tab +# map cmd+t new_tab + +#: Close tab + +# map kitty_mod+q close_tab +# map cmd+w close_tab + +#: Close OS window + +# map shift+cmd+w close_os_window + +#: Move tab forward + +# map kitty_mod+. move_tab_forward + +#: Move tab backward + +# map kitty_mod+, move_tab_backward + +#: Set tab title + +# map kitty_mod+alt+t set_tab_title +# map shift+cmd+i set_tab_title + + +#: You can also create shortcuts to go to specific tabs, with 1 being +#: the first tab, 2 the second tab and -1 being the previously active +#: tab, -2 being the tab active before the previously active tab and +#: so on. Any number larger than the number of tabs goes to the last +#: tab and any number less than the number of previously used tabs in +#: the history goes to the oldest previously used tab in the history:: + +#: map ctrl+alt+1 goto_tab 1 +#: map ctrl+alt+2 goto_tab 2 + +#: Just as with new_window above, you can also pass the name of +#: arbitrary commands to run when using new_tab and new_tab_with_cwd. +#: Finally, if you want the new tab to open next to the current tab +#: rather than at the end of the tabs list, use:: + +#: map ctrl+t new_tab !neighbor [optional cmd to run] +#: }}} + +#: Layout management {{{ + +#: Next layout + +# map kitty_mod+l next_layout + + +#: You can also create shortcuts to switch to specific layouts:: + +#: map ctrl+alt+t goto_layout tall +#: map ctrl+alt+s goto_layout stack + +#: Similarly, to switch back to the previous layout:: + +#: map ctrl+alt+p last_used_layout + +#: There is also a toggle_layout action that switches to the named +#: layout or back to the previous layout if in the named layout. +#: Useful to temporarily "zoom" the active window by switching to the +#: stack layout:: + +#: map ctrl+alt+z toggle_layout stack +#: }}} + +#: Font sizes {{{ + +#: You can change the font size for all top-level kitty OS windows at +#: a time or only the current one. + +#: Increase font size + +# map kitty_mod+equal change_font_size all +2.0 +# map kitty_mod+plus change_font_size all +2.0 +# map kitty_mod+kp_add change_font_size all +2.0 +# map cmd+plus change_font_size all +2.0 +# map cmd+equal change_font_size all +2.0 +# map shift+cmd+equal change_font_size all +2.0 + +#: Decrease font size + +# map kitty_mod+minus change_font_size all -2.0 +# map kitty_mod+kp_subtract change_font_size all -2.0 +# map cmd+minus change_font_size all -2.0 +# map shift+cmd+minus change_font_size all -2.0 + +#: Reset font size + +# map kitty_mod+backspace change_font_size all 0 +# map cmd+0 change_font_size all 0 + + +#: To setup shortcuts for specific font sizes:: + +#: map kitty_mod+f6 change_font_size all 10.0 + +#: To setup shortcuts to change only the current OS window's font +#: size:: + +#: map kitty_mod+f6 change_font_size current 10.0 + +#: To setup shortcuts to multiply/divide the font size:: + +#: map kitty_mod+f6 change_font_size all *2.0 +#: map kitty_mod+f6 change_font_size all /2.0 +#: }}} + +#: Select and act on visible text {{{ + +#: Use the hints kitten to select text and either pass it to an +#: external program or insert it into the terminal or copy it to the +#: clipboard. + +#: Open URL + +# map kitty_mod+e open_url_with_hints + +#:: Open a currently visible URL using the keyboard. The program used +#:: to open the URL is specified in open_url_with. + +#: Insert selected path + +# map kitty_mod+p>f kitten hints --type path --program - + +#:: Select a path/filename and insert it into the terminal. Useful, +#:: for instance to run git commands on a filename output from a +#:: previous git command. + +#: Open selected path + +# map kitty_mod+p>shift+f kitten hints --type path + +#:: Select a path/filename and open it with the default open program. + +#: Insert chosen file + +# map kitty_mod+p>c kitten choose-files + +#:: Select a file using the choose-files +#:: kitten +#:: and insert it into the terminal. + +#: Insert chosen directory + +# map kitty_mod+p>d kitten choose-files --mode=dir + +#:: Select a directory using the choose-files +#:: kitten +#:: and insert it into the terminal. + +#: Insert selected line + +# map kitty_mod+p>l kitten hints --type line --program - + +#:: Select a line of text and insert it into the terminal. Useful for +#:: the output of things like: `ls -1`. + +#: Insert selected word + +# map kitty_mod+p>w kitten hints --type word --program - + +#:: Select words and insert into terminal. + +#: Insert selected hash + +# map kitty_mod+p>h kitten hints --type hash --program - + +#:: Select something that looks like a hash and insert it into the +#:: terminal. Useful with git, which uses SHA1 hashes to identify +#:: commits. + +#: Open the selected file at the selected line + +# map kitty_mod+p>n kitten hints --type linenum + +#:: Select something that looks like filename:linenum and open it in +#:: your default editor at the specified line number. + +#: Open the selected hyperlink + +# map kitty_mod+p>y kitten hints --type hyperlink + +#:: Select a hyperlink (i.e. a URL that has been marked as such by +#:: the terminal program, for example, by `ls --hyperlink=auto`). + + +#: The hints kitten has many more modes of operation that you can map +#: to different shortcuts. For a full description see hints kitten +#: . +#: }}} + +#: Miscellaneous {{{ + +#: Show documentation + +# map kitty_mod+f1 show_kitty_doc overview + +#: Toggle fullscreen + +# map kitty_mod+f11 toggle_fullscreen +# map ctrl+cmd+f toggle_fullscreen + +#: Toggle maximized + +# map kitty_mod+f10 toggle_maximized + +#: Toggle macOS secure keyboard entry + +# map opt+cmd+s toggle_macos_secure_keyboard_entry + +#: macOS Cycle through OS Windows + +# map cmd+` macos_cycle_through_os_windows + +#: macOS Cycle through OS Windows backwards + +# map cmd+shift+` macos_cycle_through_os_windows_backwards + +#: Unicode input + +# map kitty_mod+u kitten unicode_input +# map ctrl+cmd+space kitten unicode_input + +#: Edit config file + +# map kitty_mod+f2 edit_config_file +# map cmd+, edit_config_file + +#: Open the kitty command shell + +# map kitty_mod+escape kitty_shell window + +#:: Open the kitty shell in a new window / tab / overlay / os_window +#:: to control kitty using commands. + +#: Increase background opacity + +# map kitty_mod+a>m set_background_opacity +0.1 + +#: Decrease background opacity + +# map kitty_mod+a>l set_background_opacity -0.1 + +#: Make background fully opaque + +# map kitty_mod+a>1 set_background_opacity 1 + +#: Reset background opacity + +# map kitty_mod+a>d set_background_opacity default + +#: Reset the terminal + +# map kitty_mod+delete clear_terminal reset active +# map opt+cmd+r clear_terminal reset active + +#:: You can create shortcuts to clear/reset the terminal. For +#:: example:: + +#:: # Reset the terminal +#:: map f1 clear_terminal reset active +#:: # Clear the terminal screen by erasing all contents +#:: map f1 clear_terminal clear active +#:: # Clear the terminal scrollback by erasing it +#:: map f1 clear_terminal scrollback active +#:: # Scroll the contents of the screen into the scrollback +#:: map f1 clear_terminal scroll active +#:: # Clear everything on screen up to the line with the cursor or the start of the current prompt (needs shell integration) +#:: map f1 clear_terminal to_cursor active +#:: # Same as above except cleared lines are moved into scrollback +#:: map f1 clear_terminal to_cursor_scroll active +#:: # Erase the last command and its output (needs shell integration to work) +#:: map f1 clear_terminal last_command active + +#:: If you want to operate on all kitty windows instead of just the +#:: current one, use all instead of active. + +#:: Some useful functions that can be defined in the shell rc files +#:: to perform various kinds of clearing of the current window: + +#:: .. code-block:: sh + +#:: clear-only-screen() { +#:: printf "\e[H\e[2J" +#:: } + +#:: clear-screen-and-scrollback() { +#:: printf "\e[H\e[3J" +#:: } + +#:: clear-screen-saving-contents-in-scrollback() { +#:: printf "\e[H\e[22J" +#:: } + +#:: For instance, using these escape codes, it is possible to remap +#:: Ctrl+L to both scroll the current screen contents into the +#:: scrollback buffer and clear the screen, instead of just clearing +#:: the screen. For ZSH, in ~/.zshrc, add: + +#:: .. code-block:: zsh + +#:: ctrl_l() { +#:: builtin print -rn -- $'\r\e[0J\e[H\e[22J' >"$TTY" +#:: builtin zle .reset-prompt +#:: builtin zle -R +#:: } +#:: zle -N ctrl_l +#:: bindkey '^l' ctrl_l + +#:: Alternatively, you can just add map ctrl+l clear_terminal +#:: to_cursor_scroll active to kitty.conf which works with no changes +#:: to the shell rc files, but only clears up to the prompt, it does +#:: not clear any text at the prompt itself. + +#: Clear to start + +# map cmd+k clear_terminal to_cursor active + +#: Clear scrollback + +# map option+cmd+k clear_terminal scrollback active + +#: Clear the last command + +# map cmd+l clear_terminal last_command active + +#: Clear screen + +# map cmd+ctrl+l clear_terminal to_cursor_scroll active + +#: Reload kitty.conf + +# map kitty_mod+f5 load_config_file +# map ctrl+cmd+, load_config_file + +#:: Reload kitty.conf, applying any changes since the last time it +#:: was loaded. Note that a handful of options cannot be dynamically +#:: changed and require a full restart of kitty. Particularly, when +#:: changing shortcuts for actions located on the macOS global menu +#:: bar, a full restart is needed. You can also map a keybinding to +#:: load a different config file, for example:: + +#:: map f5 load_config /path/to/alternative/kitty.conf + +#:: Note that all options from the original kitty.conf are discarded, +#:: in other words the new configuration *replace* the old ones. + +#: Debug kitty configuration + +# map kitty_mod+f6 debug_config +# map opt+cmd+, debug_config + +#:: Show details about exactly what configuration kitty is running +#:: with and its host environment. Useful for debugging issues. + +#: Send arbitrary text on key presses + +#:: E.g. map ctrl+shift+alt+h send_text all Hello World + +#:: You can tell kitty to send arbitrary (UTF-8) encoded text to the +#:: client program when pressing specified shortcut keys. For +#:: example:: + +#:: map ctrl+alt+a send_text all Special text + +#:: This will send "Special text" when you press the Ctrl+Alt+A key +#:: combination. The text to be sent decodes ANSI C escapes +#:: so you can use escapes like \e to send control +#:: codes or \u21fb to send Unicode characters (or you can just input +#:: the Unicode characters directly as UTF-8 text). You can use +#:: `kitten show-key` to get the key escape codes you want to +#:: emulate. + +#:: The first argument to send_text is the keyboard modes in which to +#:: activate the shortcut. The possible values are normal, +#:: application, kitty or a comma separated combination of them. The +#:: modes normal and application refer to the DECCKM cursor key mode +#:: for terminals, and kitty refers to the kitty extended keyboard +#:: protocol. The special value all means all of them. + +#:: Some more examples:: + +#:: # Output a word and move the cursor to the start of the line (like typing and pressing Home) +#:: map ctrl+alt+a send_text normal Word\e[H +#:: map ctrl+alt+a send_text application Word\eOH +#:: # Run a command at a shell prompt (like typing the command and pressing Enter) +#:: map ctrl+alt+a send_text normal,application some command with arguments\r + +#: Open kitty Website + +# map shift+cmd+/ open_url https://sw.kovidgoyal.net/kitty/ + +#: Hide macOS kitty application + +# map cmd+h hide_macos_app + +#: Hide macOS other applications + +# map opt+cmd+h hide_macos_other_apps + +#: Minimize macOS window + +# map cmd+m minimize_macos_window + +#: Quit kitty + +# map cmd+q quit + +#: }}} + +#: }}} diff --git a/.config/kitty/solid.conf b/.config/kitty/solid.conf new file mode 100644 index 0000000..f7a6ed2 --- /dev/null +++ b/.config/kitty/solid.conf @@ -0,0 +1,3 @@ +include base.conf +background_opacity 1 +map f5 load_config_file /home/arch/.config/kitty/kitty.conf diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua new file mode 100644 index 0000000..3b6a12e --- /dev/null +++ b/.config/nvim/init.lua @@ -0,0 +1,10 @@ +vim.o.number = true +vim.o.relativenumber = true +vim.o.cursorline = true +vim.o.wrap = false +vim.o.tabstop = 2 +vim.o.softtabstop = 2 +vim.o.shiftwidth = 2 + +-- Plugins bootstrap +require("config.lazy") diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json new file mode 100644 index 0000000..32b4349 --- /dev/null +++ b/.config/nvim/lazy-lock.json @@ -0,0 +1,6 @@ +{ + "lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" }, + "lualine.nvim": { "branch": "master", "commit": "47f91c416daef12db467145e16bed5bbfe00add8" }, + "nvim-web-devicons": { "branch": "master", "commit": "746ffbb17975ebd6c40142362eee1b0249969c5c" }, + "tokyonight.nvim": { "branch": "main", "commit": "5da1b76e64daf4c5d410f06bcb6b9cb640da7dfd" } +} diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua new file mode 100644 index 0000000..5e6c81b --- /dev/null +++ b/.config/nvim/lua/config/lazy.lua @@ -0,0 +1,29 @@ +-- Bootstrap lazy.nvim +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not (vim.uv or vim.loop).fs_stat(lazypath) then + local lazyrepo = "https://github.com/folke/lazy.nvim.git" + local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) + if vim.v.shell_error ~= 0 then + vim.api.nvim_echo({ + { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, + { out, "WarningMsg" }, + { "\nPress any key to exit..." }, + }, true, {}) + vim.fn.getchar() + os.exit(1) + end +end +vim.opt.rtp:prepend(lazypath) + +-- Setup lazy.nvim +require("lazy").setup({ + spec = { + -- import plugins + { import = "plugins" }, + }, + -- Configure any other settings. + -- colorscheme that will be used when installing plugins. + install = { colorscheme = { "tokyonight" } }, + -- automatically check for plugin updates + checker = { enabled = true, notify = true }, +}) diff --git a/.config/nvim/lua/plugins/line.lua b/.config/nvim/lua/plugins/line.lua new file mode 100644 index 0000000..b9b4d36 --- /dev/null +++ b/.config/nvim/lua/plugins/line.lua @@ -0,0 +1,62 @@ +return { + { + 'nvim-lualine/lualine.nvim', + dependencies = { 'nvim-tree/nvim-web-devicons' }, + opts = function() + return { + options = { + icons_enabled = true, + theme = 'auto', + component_separators = { left = '', right = ''}, + section_separators = { left = '', right = ''}, + disabled_filetypes = { + statusline = {}, + winbar = {}, + }, + ignore_focus = {}, + always_divide_middle = true, + always_show_tabline = true, + globalstatus = false, + refresh = { + statusline = 1000, + tabline = 1000, + winbar = 1000, + refresh_time = 16, -- ~60fps + events = { + 'WinEnter', + 'BufEnter', + 'BufWritePost', + 'SessionLoadPost', + 'FileChangedShellPost', + 'VimResized', + 'Filetype', + 'CursorMoved', + 'CursorMovedI', + 'ModeChanged', + }, + }, + }, + sections = { + lualine_a = {'mode'}, + lualine_b = {'branch', 'diff', 'diagnostics'}, + lualine_c = {'filename'}, + lualine_x = {'encoding', 'fileformat', 'filetype'}, + lualine_y = {'progress'}, + lualine_z = {'location'} + }, + inactive_sections = { + lualine_a = {}, + lualine_b = {}, + lualine_c = {'filename'}, + lualine_x = {'location'}, + lualine_y = {}, + lualine_z = {} + }, + tabline = {}, + winbar = {}, + inactive_winbar = {}, + extensions = {} + } + end + } +} diff --git a/.config/nvim/lua/plugins/theme.lua b/.config/nvim/lua/plugins/theme.lua new file mode 100644 index 0000000..1d8545a --- /dev/null +++ b/.config/nvim/lua/plugins/theme.lua @@ -0,0 +1,14 @@ +return { + { + "folke/tokyonight.nvim", + lazy = false, + priority = 1000, + opts = {}, + config = function() + if os.getenv("TERM") ~= "linux" then + vim.cmd.colorscheme("tokyonight-storm") + end + end + } +} + diff --git a/.config/omf/bundle b/.config/omf/bundle new file mode 100644 index 0000000..af1df51 --- /dev/null +++ b/.config/omf/bundle @@ -0,0 +1,4 @@ +theme agnoster +theme bobthefish +theme budspencer +theme default diff --git a/.config/omf/channel b/.config/omf/channel new file mode 100644 index 0000000..2bf5ad0 --- /dev/null +++ b/.config/omf/channel @@ -0,0 +1 @@ +stable diff --git a/.config/omf/theme b/.config/omf/theme new file mode 100644 index 0000000..ff8a58d --- /dev/null +++ b/.config/omf/theme @@ -0,0 +1 @@ +bobthefish diff --git a/.config/zellij/config.kdl b/.config/zellij/config.kdl new file mode 100644 index 0000000..1b3fca2 --- /dev/null +++ b/.config/zellij/config.kdl @@ -0,0 +1,536 @@ +// +// THIS FILE WAS AUTOGENERATED BY ZELLIJ, THE PREVIOUS FILE AT THIS LOCATION WAS COPIED TO: /home/arch/.config/zellij/config.kdl.bak +// +theme "tokyonight_storm" +keybinds clear-defaults=true { + locked { + bind "Ctrl g" { SwitchToMode "normal"; } + } + pane { + bind "left" { MoveFocus "left"; } + bind "down" { MoveFocus "down"; } + bind "up" { MoveFocus "up"; } + bind "right" { MoveFocus "right"; } + bind "c" { SwitchToMode "renamepane"; PaneNameInput 0; } + bind "d" { NewPane "down"; SwitchToMode "normal"; } + bind "e" { TogglePaneEmbedOrFloating; SwitchToMode "normal"; } + bind "f" { ToggleFocusFullscreen; SwitchToMode "normal"; } + bind "h" { MoveFocus "left"; } + bind "i" { TogglePanePinned; SwitchToMode "normal"; } + bind "j" { MoveFocus "down"; } + bind "k" { MoveFocus "up"; } + bind "l" { MoveFocus "right"; } + bind "n" { NewPane; SwitchToMode "normal"; } + bind "p" { SwitchFocus; } + bind "Ctrl p" { SwitchToMode "normal"; } + bind "r" { NewPane "right"; SwitchToMode "normal"; } + bind "s" { NewPane "stacked"; SwitchToMode "normal"; } + bind "w" { ToggleFloatingPanes; SwitchToMode "normal"; } + bind "z" { TogglePaneFrames; SwitchToMode "normal"; } + } + tab { + bind "left" { GoToPreviousTab; } + bind "down" { GoToNextTab; } + bind "up" { GoToPreviousTab; } + bind "right" { GoToNextTab; } + bind "1" { GoToTab 1; SwitchToMode "normal"; } + bind "2" { GoToTab 2; SwitchToMode "normal"; } + bind "3" { GoToTab 3; SwitchToMode "normal"; } + bind "4" { GoToTab 4; SwitchToMode "normal"; } + bind "5" { GoToTab 5; SwitchToMode "normal"; } + bind "6" { GoToTab 6; SwitchToMode "normal"; } + bind "7" { GoToTab 7; SwitchToMode "normal"; } + bind "8" { GoToTab 8; SwitchToMode "normal"; } + bind "9" { GoToTab 9; SwitchToMode "normal"; } + bind "[" { BreakPaneLeft; SwitchToMode "normal"; } + bind "]" { BreakPaneRight; SwitchToMode "normal"; } + bind "b" { BreakPane; SwitchToMode "normal"; } + bind "h" { GoToPreviousTab; } + bind "j" { GoToNextTab; } + bind "k" { GoToPreviousTab; } + bind "l" { GoToNextTab; } + bind "n" { NewTab; SwitchToMode "normal"; } + bind "r" { SwitchToMode "renametab"; TabNameInput 0; } + bind "s" { ToggleActiveSyncTab; SwitchToMode "normal"; } + bind "Ctrl t" { SwitchToMode "normal"; } + bind "x" { CloseTab; SwitchToMode "normal"; } + bind "tab" { ToggleTab; } + } + resize { + bind "left" { Resize "Increase left"; } + bind "down" { Resize "Increase down"; } + bind "up" { Resize "Increase up"; } + bind "right" { Resize "Increase right"; } + bind "+" { Resize "Increase"; } + bind "-" { Resize "Decrease"; } + bind "=" { Resize "Increase"; } + bind "H" { Resize "Decrease left"; } + bind "J" { Resize "Decrease down"; } + bind "K" { Resize "Decrease up"; } + bind "L" { Resize "Decrease right"; } + bind "h" { Resize "Increase left"; } + bind "j" { Resize "Increase down"; } + bind "k" { Resize "Increase up"; } + bind "l" { Resize "Increase right"; } + bind "Ctrl n" { SwitchToMode "normal"; } + } + move { + bind "left" { MovePane "left"; } + bind "down" { MovePane "down"; } + bind "up" { MovePane "up"; } + bind "right" { MovePane "right"; } + bind "h" { MovePane "left"; } + bind "Ctrl h" { SwitchToMode "normal"; } + bind "j" { MovePane "down"; } + bind "k" { MovePane "up"; } + bind "l" { MovePane "right"; } + bind "n" { MovePane; } + bind "p" { MovePaneBackwards; } + bind "tab" { MovePane; } + } + scroll { + bind "e" { EditScrollback; SwitchToMode "normal"; } + bind "s" { SwitchToMode "entersearch"; SearchInput 0; } + } + search { + bind "c" { SearchToggleOption "CaseSensitivity"; } + bind "n" { Search "down"; } + bind "o" { SearchToggleOption "WholeWord"; } + bind "p" { Search "up"; } + bind "w" { SearchToggleOption "Wrap"; } + } + session { + bind "a" { + LaunchOrFocusPlugin "zellij:about" { + floating true + move_to_focused_tab true + } + SwitchToMode "normal" + } + bind "c" { + LaunchOrFocusPlugin "configuration" { + floating true + move_to_focused_tab true + } + SwitchToMode "normal" + } + bind "Ctrl o" { SwitchToMode "normal"; } + bind "p" { + LaunchOrFocusPlugin "plugin-manager" { + floating true + move_to_focused_tab true + } + SwitchToMode "normal" + } + bind "s" { + LaunchOrFocusPlugin "zellij:share" { + floating true + move_to_focused_tab true + } + SwitchToMode "normal" + } + bind "w" { + LaunchOrFocusPlugin "session-manager" { + floating true + move_to_focused_tab true + } + SwitchToMode "normal" + } + } + shared_except "locked" { + bind "Alt left" { MoveFocusOrTab "left"; } + bind "Alt down" { MoveFocus "down"; } + bind "Alt up" { MoveFocus "up"; } + bind "Alt right" { MoveFocusOrTab "right"; } + bind "Alt +" { Resize "Increase"; } + bind "Alt -" { Resize "Decrease"; } + bind "Alt =" { Resize "Increase"; } + bind "Alt [" { PreviousSwapLayout; } + bind "Alt ]" { NextSwapLayout; } + bind "Alt f" { ToggleFloatingPanes; } + bind "Ctrl g" { SwitchToMode "locked"; } + bind "Alt h" { MoveFocusOrTab "left"; } + bind "Alt i" { MoveTab "left"; } + bind "Alt j" { MoveFocus "down"; } + bind "Alt k" { MoveFocus "up"; } + bind "Alt l" { MoveFocusOrTab "right"; } + bind "Alt n" { NewPane; } + bind "Alt o" { MoveTab "right"; } + bind "Alt p" { TogglePaneInGroup; } + bind "Alt Shift p" { ToggleGroupMarking; } + bind "Ctrl q" { Quit; } + } + shared_except "locked" "move" { + bind "Ctrl h" { SwitchToMode "move"; } + } + shared_except "locked" "session" { + bind "Ctrl o" { SwitchToMode "session"; } + } + shared_except "locked" "scroll" "search" "tmux" { + bind "Ctrl b" { SwitchToMode "tmux"; } + } + shared_except "locked" "scroll" "search" { + bind "Ctrl s" { SwitchToMode "scroll"; } + } + shared_except "locked" "tab" { + bind "Ctrl t" { SwitchToMode "tab"; } + } + shared_except "locked" "pane" { + bind "Ctrl p" { SwitchToMode "pane"; } + } + shared_except "locked" "resize" { + bind "Ctrl n" { SwitchToMode "resize"; } + } + shared_except "normal" "locked" "entersearch" { + bind "enter" { SwitchToMode "normal"; } + } + shared_except "normal" "locked" "entersearch" "renametab" "renamepane" { + bind "esc" { SwitchToMode "normal"; } + } + shared_among "pane" "tmux" { + bind "x" { CloseFocus; SwitchToMode "normal"; } + } + shared_among "scroll" "search" { + bind "PageDown" { PageScrollDown; } + bind "PageUp" { PageScrollUp; } + bind "left" { PageScrollUp; } + bind "down" { ScrollDown; } + bind "up" { ScrollUp; } + bind "right" { PageScrollDown; } + bind "Ctrl b" { PageScrollUp; } + bind "Ctrl c" { ScrollToBottom; SwitchToMode "normal"; } + bind "d" { HalfPageScrollDown; } + bind "Ctrl f" { PageScrollDown; } + bind "h" { PageScrollUp; } + bind "j" { ScrollDown; } + bind "k" { ScrollUp; } + bind "l" { PageScrollDown; } + bind "Ctrl s" { SwitchToMode "normal"; } + bind "u" { HalfPageScrollUp; } + } + entersearch { + bind "Ctrl c" { SwitchToMode "scroll"; } + bind "esc" { SwitchToMode "scroll"; } + bind "enter" { SwitchToMode "search"; } + } + renametab { + bind "esc" { UndoRenameTab; SwitchToMode "tab"; } + } + shared_among "renametab" "renamepane" { + bind "Ctrl c" { SwitchToMode "normal"; } + } + renamepane { + bind "esc" { UndoRenamePane; SwitchToMode "pane"; } + } + shared_among "session" "tmux" { + bind "d" { Detach; } + } + tmux { + bind "left" { MoveFocus "left"; SwitchToMode "normal"; } + bind "down" { MoveFocus "down"; SwitchToMode "normal"; } + bind "up" { MoveFocus "up"; SwitchToMode "normal"; } + bind "right" { MoveFocus "right"; SwitchToMode "normal"; } + bind "space" { NextSwapLayout; } + bind "\"" { NewPane "down"; SwitchToMode "normal"; } + bind "%" { NewPane "right"; SwitchToMode "normal"; } + bind "," { SwitchToMode "renametab"; } + bind "[" { SwitchToMode "scroll"; } + bind "Ctrl b" { Write 2; SwitchToMode "normal"; } + bind "c" { NewTab; SwitchToMode "normal"; } + bind "h" { MoveFocus "left"; SwitchToMode "normal"; } + bind "j" { MoveFocus "down"; SwitchToMode "normal"; } + bind "k" { MoveFocus "up"; SwitchToMode "normal"; } + bind "l" { MoveFocus "right"; SwitchToMode "normal"; } + bind "n" { GoToNextTab; SwitchToMode "normal"; } + bind "o" { FocusNextPane; } + bind "p" { GoToPreviousTab; SwitchToMode "normal"; } + bind "z" { ToggleFocusFullscreen; SwitchToMode "normal"; } + } +} + +// Plugin aliases - can be used to change the implementation of Zellij +// changing these requires a restart to take effect +plugins { + about location="zellij:about" + compact-bar location="zellij:compact-bar" + configuration location="zellij:configuration" + filepicker location="zellij:strider" { + cwd "/" + } + plugin-manager location="zellij:plugin-manager" + session-manager location="zellij:session-manager" + status-bar location="zellij:status-bar" + strider location="zellij:strider" + tab-bar location="zellij:tab-bar" + welcome-screen location="zellij:session-manager" { + welcome_screen true + } +} + +// Plugins to load in the background when a new session starts +// eg. "file:/path/to/my-plugin.wasm" +// eg. "https://example.com/my-plugin.wasm" +load_plugins { +} +web_client { + font "monospace" +} + +// Use a simplified UI without special fonts (arrow glyphs) +// Options: +// - true +// - false (Default) +// +// simplified_ui true + +// Choose the theme that is specified in the themes section. +// Default: default +// +// theme "dracula" + +// Choose the base input mode of zellij. +// Default: normal +// +// default_mode "locked" + +// Choose the path to the default shell that zellij will use for opening new panes +// Default: $SHELL +// +// default_shell "fish" + +// Choose the path to override cwd that zellij will use for opening new panes +// +// default_cwd "/tmp" + +// The name of the default layout to load on startup +// Default: "default" +// +// default_layout "compact" + +// The folder in which Zellij will look for layouts +// (Requires restart) +// +// layout_dir "/tmp" + +// The folder in which Zellij will look for themes +// (Requires restart) +// +// theme_dir "/tmp" + +// Toggle enabling the mouse mode. +// On certain configurations, or terminals this could +// potentially interfere with copying text. +// Options: +// - true (default) +// - false +// +// mouse_mode false + +// Toggle having pane frames around the panes +// Options: +// - true (default, enabled) +// - false +// +// pane_frames false + +// When attaching to an existing session with other users, +// should the session be mirrored (true) +// or should each user have their own cursor (false) +// (Requires restart) +// Default: false +// +// mirror_session true + +// Choose what to do when zellij receives SIGTERM, SIGINT, SIGQUIT or SIGHUP +// eg. when terminal window with an active zellij session is closed +// (Requires restart) +// Options: +// - detach (Default) +// - quit +// +// on_force_close "quit" + +// Configure the scroll back buffer size +// This is the number of lines zellij stores for each pane in the scroll back +// buffer. Excess number of lines are discarded in a FIFO fashion. +// (Requires restart) +// Valid values: positive integers +// Default value: 10000 +// +// scroll_buffer_size 10000 + +// Provide a command to execute when copying text. The text will be piped to +// the stdin of the program to perform the copy. This can be used with +// terminal emulators which do not support the OSC 52 ANSI control sequence +// that will be used by default if this option is not set. +// Examples: +// +// copy_command "xclip -selection clipboard" // x11 +// copy_command "wl-copy" // wayland +// copy_command "pbcopy" // osx +// +// copy_command "pbcopy" + +// Choose the destination for copied text +// Allows using the primary selection buffer (on x11/wayland) instead of the system clipboard. +// Does not apply when using copy_command. +// Options: +// - system (default) +// - primary +// +// copy_clipboard "primary" + +// Enable automatic copying (and clearing) of selection when releasing mouse +// Default: true +// +// copy_on_select true + +// Path to the default editor to use to edit pane scrollbuffer +// Default: $EDITOR or $VISUAL +// scrollback_editor "/usr/bin/vim" + +// A fixed name to always give the Zellij session. +// Consider also setting `attach_to_session true,` +// otherwise this will error if such a session exists. +// Default: +// +// session_name "My singleton session" + +// When `session_name` is provided, attaches to that session +// if it is already running or creates it otherwise. +// Default: false +// +// attach_to_session true + +// Toggle between having Zellij lay out panes according to a predefined set of layouts whenever possible +// Options: +// - true (default) +// - false +// +// auto_layout false + +// Whether sessions should be serialized to the cache folder (including their tabs/panes, cwds and running commands) so that they can later be resurrected +// Options: +// - true (default) +// - false +// +// session_serialization false + +// Whether pane viewports are serialized along with the session, default is false +// Options: +// - true +// - false (default) +// +// serialize_pane_viewport false + +// Scrollback lines to serialize along with the pane viewport when serializing sessions, 0 +// defaults to the scrollback size. If this number is higher than the scrollback size, it will +// also default to the scrollback size. This does nothing if `serialize_pane_viewport` is not true. +// +// scrollback_lines_to_serialize 10000 + +// Enable or disable the rendering of styled and colored underlines (undercurl). +// May need to be disabled for certain unsupported terminals +// (Requires restart) +// Default: true +// +// styled_underlines false + +// How often in seconds sessions are serialized +// +// serialization_interval 10000 + +// Enable or disable writing of session metadata to disk (if disabled, other sessions might not know +// metadata info on this session) +// (Requires restart) +// Default: false +// +// disable_session_metadata false + +// Enable or disable support for the enhanced Kitty Keyboard Protocol (the host terminal must also support it) +// (Requires restart) +// Default: true (if the host terminal supports it) +// +// support_kitty_keyboard_protocol false +// Whether to make sure a local web server is running when a new Zellij session starts. +// This web server will allow creating new sessions and attaching to existing ones that have +// opted in to being shared in the browser. +// When enabled, navigate to http://127.0.0.1:8082 +// (Requires restart) +// +// Note: a local web server can still be manually started from within a Zellij session or from the CLI. +// If this is not desired, one can use a version of Zellij compiled without +// `web_server_capability` +// +// Possible values: +// - true +// - false +// Default: false +// +// web_server false +// Whether to allow sessions started in the terminal to be shared through a local web server, assuming one is +// running (see the `web_server` option for more details). +// (Requires restart) +// +// Note: This is an administrative separation and not intended as a security measure. +// +// Possible values: +// - "on" (allow web sharing through the local web server if it +// is online) +// - "off" (do not allow web sharing unless sessions explicitly opt-in to it) +// - "disabled" (do not allow web sharing and do not permit sessions started in the terminal to opt-in to it) +// Default: "off" +// +// web_sharing "off" +// A path to a certificate file to be used when setting up the web client to serve the +// connection over HTTPs +// +// web_server_cert "/path/to/cert.pem" +// A path to a key file to be used when setting up the web client to serve the +// connection over HTTPs +// +// web_server_key "/path/to/key.pem" +/// Whether to enforce https connections to the web server when it is bound to localhost +/// (127.0.0.0/8) +/// +/// Note: https is ALWAYS enforced when bound to non-local interfaces +/// +/// Default: false +// +// enforce_https_for_localhost false + +// Whether to stack panes when resizing beyond a certain size +// Default: true +// +// stacked_resize false + +// Whether to show tips on startup +// Default: true +// +show_startup_tips false + +// Whether to show release notes on first version run +// Default: true +// +// show_release_notes false + +// Whether to enable mouse hover effects and pane grouping functionality +// default is true +// advanced_mouse_actions false + +// The ip address the web server should listen on when it starts +// Default: "127.0.0.1" +// (Requires restart) +// web_server_ip "127.0.0.1" + +// The port the web server should listen on when it starts +// Default: 8082 +// (Requires restart) +// web_server_port 8082 + +// A command to run (will be wrapped with sh -c and provided the RESURRECT_COMMAND env variable) +// after Zellij attempts to discover a command inside a pane when resurrecting sessions, the STDOUT +// of this command will be used instead of the discovered RESURRECT_COMMAND +// can be useful for removing wrappers around commands +// Note: be sure to escape backslashes and similar characters properly +// post_command_discovery_hook "echo $RESURRECT_COMMAND | sed " diff --git a/.config/zellij/themes/tokyonight_storm.kdl b/.config/zellij/themes/tokyonight_storm.kdl new file mode 100644 index 0000000..9ebad86 --- /dev/null +++ b/.config/zellij/themes/tokyonight_storm.kdl @@ -0,0 +1,22 @@ +// Tokyonight Zellij Colors +// Add this file to your `CONFIG_DIR/themes` directory as described here: +// https://zellij.dev/documentation/themes#getting-zellij-to-pick-up-the-theme + +themes { + tokyonight_storm { + fg "#c0caf5" + bg "#292e42" + // Black should match the terminal background color + // This ensures the top and bottom bars are transparent + black "#24283b" + red "#f7768e" + green "#9ece6a" + yellow "#e0af68" + blue "#7aa2f7" + magenta "#bb9af7" + cyan "#7dcfff" + white "#a9b1d6" + orange "#ff9e64" + } +} + diff --git a/kitten b/kitten new file mode 100644 index 0000000..e69de29