mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2023-02-13 20:55:19 -05:00
90 lines
2.5 KiB
TOML
90 lines
2.5 KiB
TOML
|
|
# This configuration file lets you define new commands
|
|
# or change the shortcut or triggering keys of built-in verbs.
|
|
# You can change the colors of broot too.
|
|
#
|
|
# Configuration documentation is available at https://dystroy.org/broot
|
|
#
|
|
|
|
#####################
|
|
# user defined verbs:
|
|
|
|
# If $EDITOR isn't set on your computer, you should either set it using
|
|
# something similar to
|
|
# export EDITOR=/usr/bin/nvim
|
|
# or just replace it with your editor of choice in the 'execution'
|
|
# pattern.
|
|
# Example:
|
|
# execution = "/usr/bin/nvim {file}"
|
|
[[verbs]]
|
|
invocation = "edit"
|
|
key = "F2"
|
|
shortcut = "e"
|
|
execution = "$EDITOR {file}"
|
|
|
|
[[verbs]]
|
|
key = "ctrl-c"
|
|
execution = ":quit"
|
|
|
|
[[verbs]]
|
|
invocation = "create {subpath}"
|
|
execution = "$EDITOR {directory}/{subpath}"
|
|
|
|
# If $PAGER isn't set on your computer, you should either set it
|
|
# or just replace it with your viewer of choice in the 'execution'
|
|
# pattern.
|
|
# Example:
|
|
# execution = "less {file}"
|
|
[[verbs]]
|
|
name = "view"
|
|
invocation = "view"
|
|
execution = "$PAGER {file}"
|
|
|
|
#####################
|
|
# Skin
|
|
|
|
# If you want to change the colors of broot,
|
|
# uncomment the following bloc and start messing
|
|
# with the various values
|
|
# Note that some of those colors might not correcly
|
|
# render on terminals with low capabilities
|
|
#
|
|
[skin]
|
|
default = "white None"
|
|
# tree = "rgb(89, 73, 101) none"
|
|
file = "gray(21) none"
|
|
# directory = "rgb(255, 152, 0) none bold"
|
|
# exe = "rgb(17, 164, 181) none"
|
|
# link = "Magenta none"
|
|
# pruning = "rgb(89, 73, 101) none Italic"
|
|
# perm__ = "gray(5) None"
|
|
# perm_r = "ansi(94) None"
|
|
# perm_w = "ansi(132) None"
|
|
# perm_x = "ansi(65) None"
|
|
# owner = "gray(12) none"
|
|
# group = "gray(12) none"
|
|
selected_line = "none black"
|
|
char_match = "ansi(10) none"
|
|
# file_error = "Red none"
|
|
# flag_label = "gray(16) none"
|
|
# flag_value = "rgb(255, 152, 0) none bold"
|
|
# input = "White none"
|
|
# status_error = "Red gray(2)"
|
|
status_job = "ansi(220) ansi(10)"
|
|
status_normal = "ansi(0) ansi(10)"
|
|
status_italic = "ansi(10) ansi(0)"
|
|
status_bold = "rgb(255, 152, 0) None bold"
|
|
status_code = "ansi(229) ansi(10)"
|
|
# status_ellipsis = "gray(19) gray(1)"
|
|
# scrollbar_track = "rgb(80, 50, 0) none"
|
|
# scrollbar_thumb = "rgb(255, 187, 0) none"
|
|
# help_paragraph = "gray(20) none"
|
|
# help_bold = "rgb(255, 187, 0) none bold"
|
|
# help_italic = "Magenta rgb(30, 30, 40) italic"
|
|
# help_code = "gray(21) gray(3)"
|
|
# help_headers = "rgb(255, 187, 0) none"
|
|
|
|
# You may find other skins on
|
|
# https://dystroy.org/broot/documentation/configuration/#colors
|
|
# for example a skin suitable for white backgrounds
|
|
|