32 lines
1007 B
TOML
32 lines
1007 B
TOML
# Characters shown in front of the query.
|
|
prompt = '> '
|
|
|
|
# space between window border and the content in pixel
|
|
padding = 100
|
|
|
|
font = 'Fira Code' # otf or ttf only
|
|
font_size = 32.0
|
|
|
|
[history]
|
|
decrease_interval = 48 # interval to decrease the number of launches
|
|
|
|
[colors]
|
|
# color format: rgb or rgba, if transparency is desired
|
|
background = '#282c34aa'
|
|
prompt = '#abb2bfff'
|
|
text = '#ffffffff' # for search results
|
|
text_query = '#e5c07bff' # for the search query
|
|
text_selected = '#61afefff' # for the currently selected result
|
|
|
|
[keybindings]
|
|
# keybindings syntax: ctrl/shift/alt/logo as modifiers and a key joined by '+' signs
|
|
# A list of available keys can be found here: https://docs.rs/crate/x11-keysymdef/0.2.0/source/src/keysym.json
|
|
paste = ["ctrl+v"]
|
|
execute = ["KP_Enter", "Return"]
|
|
delete = ["KP_Delete", "Delete", "BackSpace"]
|
|
delete_word = ["ctrl+KP_Delete", "ctrl+Delete", "ctrl+BackSpace"]
|
|
complete = []
|
|
nav_up = ["Up", "ctrl+k"]
|
|
nav_down = ["Down", "ctrl+j"]
|
|
exit = ["Escape"]
|