115 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[bell]
 | 
						|
animation = "EaseOutExpo"
 | 
						|
duration = 0
 | 
						|
 | 
						|
[colors.bright]
 | 
						|
black = "#{{ .theme.color.bg }}"
 | 
						|
magenta = "#{{ .theme.color.fg_accent }}"
 | 
						|
white = "#{{ .theme.color.fg }}"
 | 
						|
 | 
						|
[colors.normal]
 | 
						|
black = "#{{ .theme.color.bg }}"
 | 
						|
blue = "#5dc5f8"
 | 
						|
cyan = "#24dfc4"
 | 
						|
green = "#35d450"
 | 
						|
magenta = "#{{ .theme.color.fg_accent }}"
 | 
						|
red = "#ff4d51"
 | 
						|
white = "#{{ .theme.color.fg }}"
 | 
						|
yellow = "#e9e836"
 | 
						|
 | 
						|
[colors.primary]
 | 
						|
background = "#{{ .theme.color.bg }}"
 | 
						|
foreground = "#{{ .theme.color.fg }}"
 | 
						|
 | 
						|
[colors.search.focused_match]
 | 
						|
background = "#{{ .theme.color.bg_accent_dark }}"
 | 
						|
foreground = "#{{ .theme.color.fg }}"
 | 
						|
 | 
						|
[colors.search.matches]
 | 
						|
background = "#{{ .theme.color.bg_accent_dark }}"
 | 
						|
foreground = "#{{ .theme.color.fg }}"
 | 
						|
 | 
						|
[cursor]
 | 
						|
blink_interval = 250
 | 
						|
vi_mode_style = "Block"
 | 
						|
 | 
						|
[font]
 | 
						|
size={{ .theme.font.size_base_pt }}
 | 
						|
 | 
						|
[font.normal]
 | 
						|
family = "{{ .theme.font.name_mono }}"
 | 
						|
 | 
						|
[scrolling]
 | 
						|
history = 10000
 | 
						|
 | 
						|
[window]
 | 
						|
title = "term"
 | 
						|
 | 
						|
[window.padding]
 | 
						|
x = 8
 | 
						|
y = 4
 | 
						|
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "C"
 | 
						|
mods = "Control"
 | 
						|
action = "Copy"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "V"
 | 
						|
mods = "Control"
 | 
						|
action = "Paste"
 | 
						|
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "Escape"
 | 
						|
mods = "Alt"
 | 
						|
action = "ToggleViMode"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "N"
 | 
						|
mode = "Vi"
 | 
						|
action = "Left"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "E"
 | 
						|
mode = "Vi"
 | 
						|
action = "Down"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "I"
 | 
						|
mode = "Vi"
 | 
						|
action = "Up"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "O"
 | 
						|
mode = "Vi"
 | 
						|
action = "Right"
 | 
						|
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "H"
 | 
						|
mode = "Vi"
 | 
						|
action = "ToggleViMode"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "k"
 | 
						|
mode = "Vi"
 | 
						|
action = "SearchNext"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "K"
 | 
						|
mode = "Vi"
 | 
						|
action = "SearchPrevious"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "J"
 | 
						|
mode = "Vi"
 | 
						|
action = "SemanticRightEnd"
 | 
						|
 | 
						|
[[keyboard.bindings]]
 | 
						|
key = "i"
 | 
						|
mode = "Vi"
 | 
						|
action = "ToggleViMode"
 | 
						|
 |