Personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

configure yazi, its mostly default, but a lot of integration with kak

+1021 -92
+1 -1
kak/autoload/integrations/tmux.kak
··· 42 42 define-command tmux-popup -params 1.. -shell-completion -docstring ' 43 43 tmux-popup <program> [<arguments>]: create a new terminal as a tmux popup 44 44 The program passed as argument will be executed in the new terminal' %{ 45 - tmux popup -w 80% -h 80% -E -E "%sh{""$kak_config/scripts/quote-all"" ""$@""}" 45 + tmux popup -w 80% -h 80% -E -E "tmux new-session %sh{""$kak_config/scripts/quote-all"" ""$@""} ; set status off" 46 46 } 47 47 48 48 define-command tmux-new -params 1.. -shell-completion -docstring '
+25
kak/autoload/integrations/yazi.kak
··· 1 + # https://yazi-rs.github.io/ 2 + # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ 3 + 4 + provide-module yazi %{ 5 + check-cmd yazi 6 + define-command -docstring "use yazi to find and open a file" yazi %{ 7 + set-register i %sh{ 8 + if [ $(dirname "${kak_buffile}") = '.' ]; then 9 + pwd 10 + else 11 + dirname "${kak_buffile}" 12 + fi 13 + } 14 + evaluate-result "run() { ""%val{config}/scripts/yazi"" ""$1"" '%reg{i}' ; } && run" 15 + } 16 + } 17 + 18 + provide-module filemanager-yazi %{ 19 + require-module yazi 20 + alias global filemanager yazi 21 + } 22 + 23 + hook -group yazi global KakBegin .* %{ 24 + require-module yazi 25 + }
+1 -1
kak/autoload/tools/filemanager.kak
··· 1 1 declare-option -docstring "modules that provide a filemanager command" \ 2 - str-list filemanager_providers "filemanager-joshuto" "filemanager-broot" 2 + str-list filemanager_providers "filemanager-yazi" "filemanager-joshuto" "filemanager-broot" 3 3 4 4 hook -group filemanager global KakBegin .* %{ 5 5 require-module detection
+6 -4
kak/scripts/evaluate-result
··· 5 5 session="$1" 6 6 client="$2" 7 7 shift 2 8 - f=$(mktemp) 9 - eval $@ $f 8 + f=$(mktemp -u) 9 + mkfifo -m 600 "$f" 10 + eval $@ $f & 11 + output=$(< $f) 10 12 11 13 printf %s\\n " 12 - evaluate-commands -try-client '${client}' %{ 13 - $(< $f) 14 + evaluate-commands -try-client '${client}' %{ 15 + $output 14 16 } 15 17 " | kak -p "${session}" 16 18
+6 -2
kak/scripts/joshuto
··· 6 6 7 7 joshuto --output-file "$g" "$@" 8 8 file=$(< "$g") 9 - if [ -n file ]; then 10 - printf "edit! -existing '%s'" "$file" > "$f" 9 + 10 + if [ -n "$file" ]; then 11 + printf "edit! -existing '%s'\n" "$file" > "$f" & 12 + else 13 + printf 'echo "No file selected"\n' > "$f" & 11 14 fi 15 + 12 16 rm "$g"
+6 -2
kak/scripts/ranger
··· 5 5 g=$(mktemp) 6 6 ranger --choosefile="$g" $@ 7 7 file=$(< $g) 8 - if [ -n file ]; then 9 - printf "edit! -existing '%s'" "$file" > "$f" 8 + 9 + if [ -n "$file" ]; then 10 + printf "edit! -existing '%s'\n" "$file" > "$f" & 11 + else 12 + printf 'echo "No file selected"\n' > "$f" & 10 13 fi 14 + 11 15 rm "$g"
+16
kak/scripts/yazi
··· 1 + #!/usr/bin/env bash 2 + set +e 3 + f="$1" 4 + shift 5 + g=$(mktemp) 6 + 7 + yazi --chooser-file "$g" "$@" 8 + file=$(< "$g") 9 + 10 + if [ -n "$file" ]; then 11 + printf "edit! -existing '%s'\n" "$file" > "$f" & 12 + else 13 + printf 'echo "No file selected"\n' > "$f" & 14 + fi 15 + 16 + rm "$g"
+1
setup
··· 63 63 check wezterm && dot_config wezterm 64 64 check rio && dot_config rio 65 65 check tv && dot_config television 66 + check yazi && dot_config yazi 66 67 # check hyprland && dot_config hypr # I never ended up setting this one up 67 68 68 69 if [ "$(uname)" == 'Darwin' ]; then
+4 -2
tmux/.tmux.conf.template
··· 1 1 unbind C-b 2 2 set -g prefix C-k 3 3 set -g mouse on 4 - # set -g default-terminal xterm-256color 5 - set -g default-terminal rio 4 + set -g default-terminal xterm-256color 6 5 set -g escape-time 0 7 6 set -g mode-keys vi 7 + set -g allow-passthrough on 8 + set -ga update-environment TERM 9 + set -ga update-environment TERM_PROGRAM 8 10 9 11 # undercurl support 10 12 set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm'
+80 -80
wezterm/wezterm.lua.template
··· 114 114 config.disable_default_key_bindings = true 115 115 116 116 config.keys = { 117 - { 118 - key = 't', 119 - mods = 'SUPER', 120 - action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, 121 - }, 117 + -- { 118 + -- key = 't', 119 + -- mods = 'SUPER', 120 + -- action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, 121 + -- }, 122 122 { 123 123 key = 'u', 124 124 mods = 'LEADER', ··· 158 158 }, 159 159 160 160 -- tmux-like bindings. Will make using tmux in wezterm kinda hard 161 - { 162 - key = 'l', 163 - mods = 'LEADER|CTRL', 164 - action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, 165 - }, 166 - { 167 - key = 'h', 168 - mods = 'LEADER|CTRL', 169 - action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, 170 - }, 171 - { 172 - key = 'j', 173 - mods = 'LEADER|CTRL', 174 - action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }, 175 - }, 176 - { 177 - key = 'k', 178 - mods = 'LEADER|CTRL', 179 - action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }, 180 - }, 181 - { 182 - key = 'l', 183 - mods = 'LEADER', 184 - action = wezterm.action.ActivatePaneDirection "Right", 185 - }, 186 - { 187 - key = 'h', 188 - mods = 'LEADER', 189 - action = wezterm.action.ActivatePaneDirection "Left", 190 - }, 191 - { 192 - key = 'j', 193 - mods = 'LEADER', 194 - action = wezterm.action.ActivatePaneDirection "Down", 195 - }, 196 - { 197 - key = 'k', 198 - mods = 'LEADER', 199 - action = wezterm.action.ActivatePaneDirection "Up", 200 - }, 201 - { 202 - key = 'z', 203 - mods = 'LEADER', 204 - action = wezterm.action.TogglePaneZoomState, 205 - }, 206 - { 207 - key = 'c', 208 - mods = 'LEADER', 209 - action = wezterm.action.SpawnTab 'CurrentPaneDomain', 210 - }, 211 - { 212 - key = 'p', 213 - mods = 'LEADER', 214 - action = wezterm.action.ActivateTabRelative(-1), 215 - }, 216 - { 217 - key = 'n', 218 - mods = 'LEADER', 219 - action = wezterm.action.ActivateTabRelative(1), 220 - }, 221 - { 222 - key = 'p', 223 - mods = 'LEADER|SHIFT', 224 - action = wezterm.action.MoveTabRelative(-1), 225 - }, 226 - { 227 - key = 'n', 228 - mods = 'LEADER|SHIFT', 229 - action = wezterm.action.MoveTabRelative(1), 230 - }, 231 - { 232 - key = 'x', 233 - mods = 'LEADER', 234 - action = wezterm.action.CloseCurrentTab { confirm = true }, 235 - }, 161 + -- { 162 + -- key = 'l', 163 + -- mods = 'LEADER|CTRL', 164 + -- action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, 165 + -- }, 166 + -- { 167 + -- key = 'h', 168 + -- mods = 'LEADER|CTRL', 169 + -- action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' }, 170 + -- }, 171 + -- { 172 + -- key = 'j', 173 + -- mods = 'LEADER|CTRL', 174 + -- action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }, 175 + -- }, 176 + -- { 177 + -- key = 'k', 178 + -- mods = 'LEADER|CTRL', 179 + -- action = wezterm.action.SplitVertical { domain = 'CurrentPaneDomain' }, 180 + -- }, 181 + -- { 182 + -- key = 'l', 183 + -- mods = 'LEADER', 184 + -- action = wezterm.action.ActivatePaneDirection "Right", 185 + -- }, 186 + -- { 187 + -- key = 'h', 188 + -- mods = 'LEADER', 189 + -- action = wezterm.action.ActivatePaneDirection "Left", 190 + -- }, 191 + -- { 192 + -- key = 'j', 193 + -- mods = 'LEADER', 194 + -- action = wezterm.action.ActivatePaneDirection "Down", 195 + -- }, 196 + -- { 197 + -- key = 'k', 198 + -- mods = 'LEADER', 199 + -- action = wezterm.action.ActivatePaneDirection "Up", 200 + -- }, 201 + -- { 202 + -- key = 'z', 203 + -- mods = 'LEADER', 204 + -- action = wezterm.action.TogglePaneZoomState, 205 + -- }, 206 + -- { 207 + -- key = 'c', 208 + -- mods = 'LEADER', 209 + -- action = wezterm.action.SpawnTab 'CurrentPaneDomain', 210 + -- }, 211 + -- { 212 + -- key = 'p', 213 + -- mods = 'LEADER', 214 + -- action = wezterm.action.ActivateTabRelative(-1), 215 + -- }, 216 + -- { 217 + -- key = 'n', 218 + -- mods = 'LEADER', 219 + -- action = wezterm.action.ActivateTabRelative(1), 220 + -- }, 221 + -- { 222 + -- key = 'p', 223 + -- mods = 'LEADER|SHIFT', 224 + -- action = wezterm.action.MoveTabRelative(-1), 225 + -- }, 226 + -- { 227 + -- key = 'n', 228 + -- mods = 'LEADER|SHIFT', 229 + -- action = wezterm.action.MoveTabRelative(1), 230 + -- }, 231 + -- { 232 + -- key = 'x', 233 + -- mods = 'LEADER', 234 + -- action = wezterm.action.CloseCurrentTab { confirm = true }, 235 + -- }, 236 236 { 237 237 key = 'Space', 238 238 mods = 'LEADER',
+10
yazi/keymap.toml
··· 1 + [[manager.prepend_keymap]] 2 + on = "l" 3 + run = [ 4 + 'shell -- [ -d "$1" ] && ya emit enter || true', 5 + 'shell -- [ -f "$1" ] && ya emit open --hovered || true' 6 + ] 7 + 8 + [[manager.prepend_keymap]] 9 + on = ["z", "h"] 10 + run = "hidden toggle"
+853
yazi/theme.toml
··· 1 + "$schema" = "https://yazi-rs.github.io/schemas/theme.json" 2 + 3 + [flavor] 4 + dark = "" 5 + light = "" 6 + 7 + [manager] 8 + cwd = { fg = "cyan" } 9 + 10 + # Hovered 11 + hovered = { reversed = true } 12 + preview_hovered = { underline = true } 13 + 14 + # Find 15 + find_keyword = { fg = "yellow", bold = true, italic = true, underline = true } 16 + find_position = { fg = "magenta", bg = "reset", bold = true, italic = true } 17 + 18 + # Symlink 19 + symlink_target = { italic = true } 20 + 21 + # Marker 22 + marker_copied = { fg = "lightgreen", bg = "lightgreen" } 23 + marker_cut = { fg = "lightred", bg = "lightred" } 24 + marker_marked = { fg = "lightcyan", bg = "lightcyan" } 25 + marker_selected = { fg = "lightyellow", bg = "lightyellow" } 26 + 27 + # Tab 28 + tab_active = { reversed = true } 29 + tab_inactive = {} 30 + tab_width = 1 31 + 32 + # Count 33 + count_copied = { fg = "white", bg = "green" } 34 + count_cut = { fg = "white", bg = "red" } 35 + count_selected = { fg = "white", bg = "yellow" } 36 + 37 + # Border 38 + border_symbol = "│" 39 + border_style = { fg = "gray" } 40 + 41 + # Highlighting 42 + syntect_theme = "" 43 + 44 + [mode] 45 + normal_main = { bg = "magenta", fg = "black" } 46 + normal_alt = { bg = "blue", fg = "black" } 47 + 48 + # Select mode 49 + select_main = { bg = "red", bold = true } 50 + select_alt = { fg = "red", bg = "gray" } 51 + 52 + # Unset mode 53 + unset_main = { bg = "red", bold = true } 54 + unset_alt = { fg = "red", bg = "gray" } 55 + 56 + [status] 57 + overall = {} 58 + sep_left = { open = "", close = "" } 59 + sep_right = { open = "", close = "" } 60 + 61 + # Permissions 62 + perm_sep = { fg = "darkgray" } 63 + perm_type = { fg = "green" } 64 + perm_read = { fg = "yellow" } 65 + perm_write = { fg = "red" } 66 + perm_exec = { fg = "cyan" } 67 + 68 + # Progress 69 + progress_label = { bold = true } 70 + progress_normal = { fg = "blue", bg = "black" } 71 + progress_error = { fg = "red", bg = "black" } 72 + 73 + [which] 74 + cols = 3 75 + mask = { bg = "black" } 76 + cand = { fg = "lightcyan" } 77 + rest = { fg = "darkgray" } 78 + desc = { fg = "lightmagenta" } 79 + separator = "  " 80 + separator_style = { fg = "darkgray" } 81 + 82 + [confirm] 83 + border = { fg = "blue" } 84 + title = { fg = "blue" } 85 + content = {} 86 + list = {} 87 + btn_yes = { reversed = true } 88 + btn_no = {} 89 + btn_labels = [ " [Y]es ", " (N)o " ] 90 + 91 + [spot] 92 + border = { fg = "blue" } 93 + title = { fg = "blue" } 94 + 95 + # Table 96 + tbl_col = { fg = "blue" } 97 + tbl_cell = { fg = "yellow", reversed = true } 98 + 99 + [notify] 100 + title_info = { fg = "green" } 101 + title_warn = { fg = "yellow" } 102 + title_error = { fg = "red" } 103 + 104 + # Icons 105 + icon_info = "" 106 + icon_warn = "" 107 + icon_error = "" 108 + 109 + [pick] 110 + border = { fg = "blue" } 111 + active = { fg = "magenta", bold = true } 112 + inactive = {} 113 + 114 + [input] 115 + border = { fg = "blue" } 116 + title = {} 117 + value = {} 118 + selected = { reversed = true } 119 + 120 + [cmp] 121 + border = { fg = "blue" } 122 + active = { reversed = true } 123 + inactive = {} 124 + 125 + # Icons 126 + icon_file = "" 127 + icon_folder = "" 128 + icon_command = "" 129 + 130 + [tasks] 131 + border = { fg = "blue" } 132 + title = {} 133 + hovered = { fg = "magenta", underline = true } 134 + 135 + [help] 136 + on = { fg = "cyan" } 137 + run = { fg = "magenta" } 138 + desc = {} 139 + hovered = { reversed = true, bold = true } 140 + footer = { fg = "black", bg = "white" } 141 + 142 + [filetype] 143 + rules = [ 144 + # Images 145 + { mime = "image/*", fg = "yellow" }, 146 + 147 + # Media 148 + { mime = "{audio,video}/*", fg = "magenta" }, 149 + 150 + # Archives 151 + { mime = "application/{zip,rar,7z*,tar,gzip,xz,zstd,bzip*,lzma,compress,archive,cpio,arj,xar,ms-cab*}", fg = "red" }, 152 + 153 + # Documents 154 + { mime = "application/{pdf,doc,rtf}", fg = "cyan" }, 155 + 156 + # Empty files 157 + # { mime = "inode/empty", fg = "red" }, 158 + 159 + # Special files 160 + { name = "*", is = "orphan", bg = "red" }, 161 + { name = "*", is = "exec" , fg = "green" }, 162 + 163 + # Dummy files 164 + { name = "*", is = "dummy", bg = "red" }, 165 + { name = "*/", is = "dummy", bg = "red" }, 166 + 167 + # Fallback 168 + # { name = "*", fg = "white" }, 169 + { name = "*/", fg = "blue" } 170 + ] 171 + 172 + [icon] 173 + globs = [] 174 + dirs = [ 175 + { name = ".config", text = "" }, 176 + { name = ".git", text = "" }, 177 + { name = ".github", text = "" }, 178 + { name = ".npm", text = "" }, 179 + { name = "Desktop", text = "" }, 180 + { name = "Development", text = "" }, 181 + { name = "Documents", text = "" }, 182 + { name = "Downloads", text = "" }, 183 + { name = "Library", text = "" }, 184 + { name = "Movies", text = "" }, 185 + { name = "Music", text = "" }, 186 + { name = "Pictures", text = "" }, 187 + { name = "Public", text = "" }, 188 + { name = "Videos", text = "" }, 189 + ] 190 + files = [ 191 + { name = ".babelrc", text = "", fg = "#cbcb41" }, 192 + { name = ".bash_profile", text = "", fg = "#89e051" }, 193 + { name = ".bashrc", text = "", fg = "#89e051" }, 194 + { name = ".clang-format", text = "", fg = "#6d8086" }, 195 + { name = ".clang-tidy", text = "", fg = "#6d8086" }, 196 + { name = ".codespellrc", text = "󰓆", fg = "#35da60" }, 197 + { name = ".condarc", text = "", fg = "#43b02a" }, 198 + { name = ".dockerignore", text = "󰡨", fg = "#458ee6" }, 199 + { name = ".ds_store", text = "", fg = "#41535b" }, 200 + { name = ".editorconfig", text = "", fg = "#fff2f2" }, 201 + { name = ".env", text = "", fg = "#faf743" }, 202 + { name = ".eslintignore", text = "", fg = "#4b32c3" }, 203 + { name = ".eslintrc", text = "", fg = "#4b32c3" }, 204 + { name = ".git-blame-ignore-revs", text = "", fg = "#f54d27" }, 205 + { name = ".gitattributes", text = "", fg = "#f54d27" }, 206 + { name = ".gitconfig", text = "", fg = "#f54d27" }, 207 + { name = ".gitignore", text = "", fg = "#f54d27" }, 208 + { name = ".gitlab-ci.yml", text = "", fg = "#e24329" }, 209 + { name = ".gitmodules", text = "", fg = "#f54d27" }, 210 + { name = ".gtkrc-2.0", text = "", fg = "#ffffff" }, 211 + { name = ".gvimrc", text = "", fg = "#019833" }, 212 + { name = ".justfile", text = "", fg = "#6d8086" }, 213 + { name = ".luacheckrc", text = "", fg = "#00a2ff" }, 214 + { name = ".luaurc", text = "", fg = "#00a2ff" }, 215 + { name = ".mailmap", text = "󰊢", fg = "#f54d27" }, 216 + { name = ".nanorc", text = "", fg = "#440077" }, 217 + { name = ".npmignore", text = "", fg = "#e8274b" }, 218 + { name = ".npmrc", text = "", fg = "#e8274b" }, 219 + { name = ".nuxtrc", text = "󱄆", fg = "#00c58e" }, 220 + { name = ".nvmrc", text = "", fg = "#5fa04e" }, 221 + { name = ".pre-commit-config.yaml", text = "󰛢", fg = "#f8b424" }, 222 + { name = ".prettierignore", text = "", fg = "#4285f4" }, 223 + { name = ".prettierrc", text = "", fg = "#4285f4" }, 224 + { name = ".prettierrc.cjs", text = "", fg = "#4285f4" }, 225 + { name = ".prettierrc.js", text = "", fg = "#4285f4" }, 226 + { name = ".prettierrc.json", text = "", fg = "#4285f4" }, 227 + { name = ".prettierrc.json5", text = "", fg = "#4285f4" }, 228 + { name = ".prettierrc.mjs", text = "", fg = "#4285f4" }, 229 + { name = ".prettierrc.toml", text = "", fg = "#4285f4" }, 230 + { name = ".prettierrc.yaml", text = "", fg = "#4285f4" }, 231 + { name = ".prettierrc.yml", text = "", fg = "#4285f4" }, 232 + { name = ".pylintrc", text = "", fg = "#6d8086" }, 233 + { name = ".settings.json", text = "", fg = "#854cc7" }, 234 + { name = ".SRCINFO", text = "󰣇", fg = "#0f94d2" }, 235 + { name = ".vimrc", text = "", fg = "#019833" }, 236 + { name = ".Xauthority", text = "", fg = "#e54d18" }, 237 + { name = ".xinitrc", text = "", fg = "#e54d18" }, 238 + { name = ".Xresources", text = "", fg = "#e54d18" }, 239 + { name = ".xsession", text = "", fg = "#e54d18" }, 240 + { name = ".zprofile", text = "", fg = "#89e051" }, 241 + { name = ".zshenv", text = "", fg = "#89e051" }, 242 + { name = ".zshrc", text = "", fg = "#89e051" }, 243 + { name = "_gvimrc", text = "", fg = "#019833" }, 244 + { name = "_vimrc", text = "", fg = "#019833" }, 245 + { name = "AUTHORS", text = "", fg = "#a172ff" }, 246 + { name = "AUTHORS.txt", text = "", fg = "#a172ff" }, 247 + { name = "brewfile", text = "", fg = "#701516" }, 248 + { name = "bspwmrc", text = "", fg = "#2f2f2f" }, 249 + { name = "build", text = "", fg = "#89e051" }, 250 + { name = "build.gradle", text = "", fg = "#005f87" }, 251 + { name = "build.zig.zon", text = "", fg = "#f69a1b" }, 252 + { name = "bun.lockb", text = "", fg = "#eadcd1" }, 253 + { name = "cantorrc", text = "", fg = "#1c99f3" }, 254 + { name = "checkhealth", text = "󰓙", fg = "#75b4fb" }, 255 + { name = "cmakelists.txt", text = "", fg = "#dce3eb" }, 256 + { name = "code_of_conduct", text = "", fg = "#e41662" }, 257 + { name = "code_of_conduct.md", text = "", fg = "#e41662" }, 258 + { name = "commit_editmsg", text = "", fg = "#f54d27" }, 259 + { name = "commitlint.config.js", text = "󰜘", fg = "#2b9689" }, 260 + { name = "commitlint.config.ts", text = "󰜘", fg = "#2b9689" }, 261 + { name = "compose.yaml", text = "󰡨", fg = "#458ee6" }, 262 + { name = "compose.yml", text = "󰡨", fg = "#458ee6" }, 263 + { name = "config", text = "", fg = "#6d8086" }, 264 + { name = "containerfile", text = "󰡨", fg = "#458ee6" }, 265 + { name = "copying", text = "", fg = "#cbcb41" }, 266 + { name = "copying.lesser", text = "", fg = "#cbcb41" }, 267 + { name = "Directory.Build.props", text = "", fg = "#00a2ff" }, 268 + { name = "Directory.Build.targets", text = "", fg = "#00a2ff" }, 269 + { name = "Directory.Packages.props", text = "", fg = "#00a2ff" }, 270 + { name = "docker-compose.yaml", text = "󰡨", fg = "#458ee6" }, 271 + { name = "docker-compose.yml", text = "󰡨", fg = "#458ee6" }, 272 + { name = "dockerfile", text = "󰡨", fg = "#458ee6" }, 273 + { name = "eslint.config.cjs", text = "", fg = "#4b32c3" }, 274 + { name = "eslint.config.js", text = "", fg = "#4b32c3" }, 275 + { name = "eslint.config.mjs", text = "", fg = "#4b32c3" }, 276 + { name = "eslint.config.ts", text = "", fg = "#4b32c3" }, 277 + { name = "ext_typoscript_setup.txt", text = "", fg = "#ff8700" }, 278 + { name = "favicon.ico", text = "", fg = "#cbcb41" }, 279 + { name = "fp-info-cache", text = "", fg = "#ffffff" }, 280 + { name = "fp-lib-table", text = "", fg = "#ffffff" }, 281 + { name = "FreeCAD.conf", text = "", fg = "#cb333b" }, 282 + { name = "Gemfile", text = "", fg = "#701516" }, 283 + { name = "gnumakefile", text = "", fg = "#6d8086" }, 284 + { name = "go.mod", text = "", fg = "#519aba" }, 285 + { name = "go.sum", text = "", fg = "#519aba" }, 286 + { name = "go.work", text = "", fg = "#519aba" }, 287 + { name = "gradle-wrapper.properties", text = "", fg = "#005f87" }, 288 + { name = "gradle.properties", text = "", fg = "#005f87" }, 289 + { name = "gradlew", text = "", fg = "#005f87" }, 290 + { name = "groovy", text = "", fg = "#4a687c" }, 291 + { name = "gruntfile.babel.js", text = "", fg = "#e37933" }, 292 + { name = "gruntfile.coffee", text = "", fg = "#e37933" }, 293 + { name = "gruntfile.js", text = "", fg = "#e37933" }, 294 + { name = "gruntfile.ts", text = "", fg = "#e37933" }, 295 + { name = "gtkrc", text = "", fg = "#ffffff" }, 296 + { name = "gulpfile.babel.js", text = "", fg = "#cc3e44" }, 297 + { name = "gulpfile.coffee", text = "", fg = "#cc3e44" }, 298 + { name = "gulpfile.js", text = "", fg = "#cc3e44" }, 299 + { name = "gulpfile.ts", text = "", fg = "#cc3e44" }, 300 + { name = "hypridle.conf", text = "", fg = "#00aaae" }, 301 + { name = "hyprland.conf", text = "", fg = "#00aaae" }, 302 + { name = "hyprlock.conf", text = "", fg = "#00aaae" }, 303 + { name = "hyprpaper.conf", text = "", fg = "#00aaae" }, 304 + { name = "i18n.config.js", text = "󰗊", fg = "#7986cb" }, 305 + { name = "i18n.config.ts", text = "󰗊", fg = "#7986cb" }, 306 + { name = "i3blocks.conf", text = "", fg = "#e8ebee" }, 307 + { name = "i3status.conf", text = "", fg = "#e8ebee" }, 308 + { name = "index.theme", text = "", fg = "#2db96f" }, 309 + { name = "ionic.config.json", text = "", fg = "#4f8ff7" }, 310 + { name = "justfile", text = "", fg = "#6d8086" }, 311 + { name = "kalgebrarc", text = "", fg = "#1c99f3" }, 312 + { name = "kdeglobals", text = "", fg = "#1c99f3" }, 313 + { name = "kdenlive-layoutsrc", text = "", fg = "#83b8f2" }, 314 + { name = "kdenliverc", text = "", fg = "#83b8f2" }, 315 + { name = "kritadisplayrc", text = "", fg = "#f245fb" }, 316 + { name = "kritarc", text = "", fg = "#f245fb" }, 317 + { name = "license", text = "", fg = "#d0bf41" }, 318 + { name = "license.md", text = "", fg = "#d0bf41" }, 319 + { name = "lxde-rc.xml", text = "", fg = "#909090" }, 320 + { name = "lxqt.conf", text = "", fg = "#0192d3" }, 321 + { name = "makefile", text = "", fg = "#6d8086" }, 322 + { name = "mix.lock", text = "", fg = "#a074c4" }, 323 + { name = "mpv.conf", text = "", fg = "#3b1342" }, 324 + { name = "node_modules", text = "", fg = "#e8274b" }, 325 + { name = "nuxt.config.cjs", text = "󱄆", fg = "#00c58e" }, 326 + { name = "nuxt.config.js", text = "󱄆", fg = "#00c58e" }, 327 + { name = "nuxt.config.mjs", text = "󱄆", fg = "#00c58e" }, 328 + { name = "nuxt.config.ts", text = "󱄆", fg = "#00c58e" }, 329 + { name = "package-lock.json", text = "", fg = "#7a0d21" }, 330 + { name = "package.json", text = "", fg = "#e8274b" }, 331 + { name = "PKGBUILD", text = "", fg = "#0f94d2" }, 332 + { name = "platformio.ini", text = "", fg = "#f6822b" }, 333 + { name = "pom.xml", text = "", fg = "#7a0d21" }, 334 + { name = "prettier.config.cjs", text = "", fg = "#4285f4" }, 335 + { name = "prettier.config.js", text = "", fg = "#4285f4" }, 336 + { name = "prettier.config.mjs", text = "", fg = "#4285f4" }, 337 + { name = "prettier.config.ts", text = "", fg = "#4285f4" }, 338 + { name = "procfile", text = "", fg = "#a074c4" }, 339 + { name = "PrusaSlicer.ini", text = "", fg = "#ec6b23" }, 340 + { name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#ec6b23" }, 341 + { name = "py.typed", text = "", fg = "#ffbc03" }, 342 + { name = "QtProject.conf", text = "", fg = "#40cd52" }, 343 + { name = "rakefile", text = "", fg = "#701516" }, 344 + { name = "readme", text = "󰂺", fg = "#ededed" }, 345 + { name = "readme.md", text = "󰂺", fg = "#ededed" }, 346 + { name = "rmd", text = "", fg = "#519aba" }, 347 + { name = "robots.txt", text = "󰚩", fg = "#5d7096" }, 348 + { name = "security", text = "󰒃", fg = "#bec4c9" }, 349 + { name = "security.md", text = "󰒃", fg = "#bec4c9" }, 350 + { name = "settings.gradle", text = "", fg = "#005f87" }, 351 + { name = "svelte.config.js", text = "", fg = "#ff3e00" }, 352 + { name = "sxhkdrc", text = "", fg = "#2f2f2f" }, 353 + { name = "sym-lib-table", text = "", fg = "#ffffff" }, 354 + { name = "tailwind.config.js", text = "󱏿", fg = "#20c2e3" }, 355 + { name = "tailwind.config.mjs", text = "󱏿", fg = "#20c2e3" }, 356 + { name = "tailwind.config.ts", text = "󱏿", fg = "#20c2e3" }, 357 + { name = "tmux.conf", text = "", fg = "#14ba19" }, 358 + { name = "tmux.conf.local", text = "", fg = "#14ba19" }, 359 + { name = "tsconfig.json", text = "", fg = "#519aba" }, 360 + { name = "unlicense", text = "", fg = "#d0bf41" }, 361 + { name = "vagrantfile", text = "", fg = "#1563ff" }, 362 + { name = "vercel.json", text = "", fg = "#ffffff" }, 363 + { name = "vlcrc", text = "󰕼", fg = "#ee7a00" }, 364 + { name = "webpack", text = "󰜫", fg = "#519aba" }, 365 + { name = "weston.ini", text = "", fg = "#ffbb01" }, 366 + { name = "workspace", text = "", fg = "#89e051" }, 367 + { name = "xmobarrc", text = "", fg = "#fd4d5d" }, 368 + { name = "xmobarrc.hs", text = "", fg = "#fd4d5d" }, 369 + { name = "xmonad.hs", text = "", fg = "#fd4d5d" }, 370 + { name = "xorg.conf", text = "", fg = "#e54d18" }, 371 + { name = "xsettingsd.conf", text = "", fg = "#e54d18" }, 372 + ] 373 + exts = [ 374 + { name = "3gp", text = "", fg = "#fd971f" }, 375 + { name = "3mf", text = "󰆧", fg = "#888888" }, 376 + { name = "7z", text = "", fg = "#eca517" }, 377 + { name = "a", text = "", fg = "#dcddd6" }, 378 + { name = "aac", text = "", fg = "#00afff" }, 379 + { name = "adb", text = "", fg = "#22ffff" }, 380 + { name = "ads", text = "", fg = "#ffffff" }, 381 + { name = "ai", text = "", fg = "#cbcb41" }, 382 + { name = "aif", text = "", fg = "#00afff" }, 383 + { name = "aiff", text = "", fg = "#00afff" }, 384 + { name = "android", text = "", fg = "#34a853" }, 385 + { name = "ape", text = "", fg = "#00afff" }, 386 + { name = "apk", text = "", fg = "#34a853" }, 387 + { name = "apl", text = "", fg = "#24a148" }, 388 + { name = "app", text = "", fg = "#9f0500" }, 389 + { name = "applescript", text = "", fg = "#6d8085" }, 390 + { name = "asc", text = "󰦝", fg = "#576d7f" }, 391 + { name = "asm", text = "", fg = "#0091bd" }, 392 + { name = "ass", text = "󰨖", fg = "#ffb713" }, 393 + { name = "astro", text = "", fg = "#e23f67" }, 394 + { name = "avif", text = "", fg = "#a074c4" }, 395 + { name = "awk", text = "", fg = "#4d5a5e" }, 396 + { name = "azcli", text = "", fg = "#0078d4" }, 397 + { name = "bak", text = "󰁯", fg = "#6d8086" }, 398 + { name = "bash", text = "", fg = "#89e051" }, 399 + { name = "bat", text = "", fg = "#c1f12e" }, 400 + { name = "bazel", text = "", fg = "#89e051" }, 401 + { name = "bib", text = "󱉟", fg = "#cbcb41" }, 402 + { name = "bicep", text = "", fg = "#519aba" }, 403 + { name = "bicepparam", text = "", fg = "#9f74b3" }, 404 + { name = "bin", text = "", fg = "#9f0500" }, 405 + { name = "blade.php", text = "", fg = "#f05340" }, 406 + { name = "blend", text = "󰂫", fg = "#ea7600" }, 407 + { name = "blp", text = "󰺾", fg = "#5796e2" }, 408 + { name = "bmp", text = "", fg = "#a074c4" }, 409 + { name = "bqn", text = "", fg = "#24a148" }, 410 + { name = "brep", text = "󰻫", fg = "#839463" }, 411 + { name = "bz", text = "", fg = "#eca517" }, 412 + { name = "bz2", text = "", fg = "#eca517" }, 413 + { name = "bz3", text = "", fg = "#eca517" }, 414 + { name = "bzl", text = "", fg = "#89e051" }, 415 + { name = "c", text = "", fg = "#599eff" }, 416 + { name = "c++", text = "", fg = "#f34b7d" }, 417 + { name = "cache", text = "", fg = "#ffffff" }, 418 + { name = "cast", text = "", fg = "#fd971f" }, 419 + { name = "cbl", text = "", fg = "#005ca5" }, 420 + { name = "cc", text = "", fg = "#f34b7d" }, 421 + { name = "ccm", text = "", fg = "#f34b7d" }, 422 + { name = "cfg", text = "", fg = "#6d8086" }, 423 + { name = "cjs", text = "", fg = "#cbcb41" }, 424 + { name = "clj", text = "", fg = "#8dc149" }, 425 + { name = "cljc", text = "", fg = "#8dc149" }, 426 + { name = "cljd", text = "", fg = "#519aba" }, 427 + { name = "cljs", text = "", fg = "#519aba" }, 428 + { name = "cmake", text = "", fg = "#dce3eb" }, 429 + { name = "cob", text = "", fg = "#005ca5" }, 430 + { name = "cobol", text = "", fg = "#005ca5" }, 431 + { name = "coffee", text = "", fg = "#cbcb41" }, 432 + { name = "conda", text = "", fg = "#43b02a" }, 433 + { name = "conf", text = "", fg = "#6d8086" }, 434 + { name = "config.ru", text = "", fg = "#701516" }, 435 + { name = "cow", text = "󰆚", fg = "#965824" }, 436 + { name = "cp", text = "", fg = "#519aba" }, 437 + { name = "cpp", text = "", fg = "#519aba" }, 438 + { name = "cppm", text = "", fg = "#519aba" }, 439 + { name = "cpy", text = "", fg = "#005ca5" }, 440 + { name = "cr", text = "", fg = "#c8c8c8" }, 441 + { name = "crdownload", text = "", fg = "#44cda8" }, 442 + { name = "cs", text = "󰌛", fg = "#596706" }, 443 + { name = "csh", text = "", fg = "#4d5a5e" }, 444 + { name = "cshtml", text = "󱦗", fg = "#512bd4" }, 445 + { name = "cson", text = "", fg = "#cbcb41" }, 446 + { name = "csproj", text = "󰪮", fg = "#512bd4" }, 447 + { name = "css", text = "", fg = "#42a5f5" }, 448 + { name = "csv", text = "", fg = "#89e051" }, 449 + { name = "cts", text = "", fg = "#519aba" }, 450 + { name = "cu", text = "", fg = "#89e051" }, 451 + { name = "cue", text = "󰲹", fg = "#ed95ae" }, 452 + { name = "cuh", text = "", fg = "#a074c4" }, 453 + { name = "cxx", text = "", fg = "#519aba" }, 454 + { name = "cxxm", text = "", fg = "#519aba" }, 455 + { name = "d", text = "", fg = "#b03931" }, 456 + { name = "d.ts", text = "", fg = "#d59855" }, 457 + { name = "dart", text = "", fg = "#03589c" }, 458 + { name = "db", text = "", fg = "#dad8d8" }, 459 + { name = "dconf", text = "", fg = "#ffffff" }, 460 + { name = "desktop", text = "", fg = "#563d7c" }, 461 + { name = "diff", text = "", fg = "#41535b" }, 462 + { name = "dll", text = "", fg = "#4d2c0b" }, 463 + { name = "doc", text = "󰈬", fg = "#185abd" }, 464 + { name = "Dockerfile", text = "󰡨", fg = "#458ee6" }, 465 + { name = "docx", text = "󰈬", fg = "#185abd" }, 466 + { name = "dot", text = "󱁉", fg = "#30638e" }, 467 + { name = "download", text = "", fg = "#44cda8" }, 468 + { name = "drl", text = "", fg = "#ffafaf" }, 469 + { name = "dropbox", text = "", fg = "#0061fe" }, 470 + { name = "dump", text = "", fg = "#dad8d8" }, 471 + { name = "dwg", text = "󰻫", fg = "#839463" }, 472 + { name = "dxf", text = "󰻫", fg = "#839463" }, 473 + { name = "ebook", text = "", fg = "#eab16d" }, 474 + { name = "ebuild", text = "", fg = "#4c416e" }, 475 + { name = "edn", text = "", fg = "#519aba" }, 476 + { name = "eex", text = "", fg = "#a074c4" }, 477 + { name = "ejs", text = "", fg = "#cbcb41" }, 478 + { name = "el", text = "", fg = "#8172be" }, 479 + { name = "elc", text = "", fg = "#8172be" }, 480 + { name = "elf", text = "", fg = "#9f0500" }, 481 + { name = "elm", text = "", fg = "#519aba" }, 482 + { name = "eln", text = "", fg = "#8172be" }, 483 + { name = "env", text = "", fg = "#faf743" }, 484 + { name = "eot", text = "", fg = "#ececec" }, 485 + { name = "epp", text = "", fg = "#ffa61a" }, 486 + { name = "epub", text = "", fg = "#eab16d" }, 487 + { name = "erb", text = "", fg = "#701516" }, 488 + { name = "erl", text = "", fg = "#b83998" }, 489 + { name = "ex", text = "", fg = "#a074c4" }, 490 + { name = "exe", text = "", fg = "#9f0500" }, 491 + { name = "exs", text = "", fg = "#a074c4" }, 492 + { name = "f#", text = "", fg = "#519aba" }, 493 + { name = "f3d", text = "󰻫", fg = "#839463" }, 494 + { name = "f90", text = "󱈚", fg = "#734f96" }, 495 + { name = "fbx", text = "󰆧", fg = "#888888" }, 496 + { name = "fcbak", text = "", fg = "#cb333b" }, 497 + { name = "fcmacro", text = "", fg = "#cb333b" }, 498 + { name = "fcmat", text = "", fg = "#cb333b" }, 499 + { name = "fcparam", text = "", fg = "#cb333b" }, 500 + { name = "fcscript", text = "", fg = "#cb333b" }, 501 + { name = "fcstd", text = "", fg = "#cb333b" }, 502 + { name = "fcstd1", text = "", fg = "#cb333b" }, 503 + { name = "fctb", text = "", fg = "#cb333b" }, 504 + { name = "fctl", text = "", fg = "#cb333b" }, 505 + { name = "fdmdownload", text = "", fg = "#44cda8" }, 506 + { name = "fish", text = "", fg = "#4d5a5e" }, 507 + { name = "flac", text = "", fg = "#0075aa" }, 508 + { name = "flc", text = "", fg = "#ececec" }, 509 + { name = "flf", text = "", fg = "#ececec" }, 510 + { name = "fnl", text = "", fg = "#fff3d7" }, 511 + { name = "fodg", text = "", fg = "#fffb57" }, 512 + { name = "fodp", text = "", fg = "#fe9c45" }, 513 + { name = "fods", text = "", fg = "#78fc4e" }, 514 + { name = "fodt", text = "", fg = "#2dcbfd" }, 515 + { name = "fs", text = "", fg = "#519aba" }, 516 + { name = "fsi", text = "", fg = "#519aba" }, 517 + { name = "fsscript", text = "", fg = "#519aba" }, 518 + { name = "fsx", text = "", fg = "#519aba" }, 519 + { name = "gcode", text = "󰐫", fg = "#1471ad" }, 520 + { name = "gd", text = "", fg = "#6d8086" }, 521 + { name = "gemspec", text = "", fg = "#701516" }, 522 + { name = "gif", text = "", fg = "#a074c4" }, 523 + { name = "git", text = "", fg = "#f14c28" }, 524 + { name = "glb", text = "", fg = "#ffb13b" }, 525 + { name = "gleam", text = "", fg = "#ffaff3" }, 526 + { name = "gnumakefile", text = "", fg = "#6d8086" }, 527 + { name = "go", text = "", fg = "#519aba" }, 528 + { name = "godot", text = "", fg = "#6d8086" }, 529 + { name = "gpr", text = "", fg = "#ff33ff" }, 530 + { name = "gql", text = "", fg = "#e535ab" }, 531 + { name = "gradle", text = "", fg = "#005f87" }, 532 + { name = "graphql", text = "", fg = "#e535ab" }, 533 + { name = "gresource", text = "", fg = "#ffffff" }, 534 + { name = "gv", text = "󱁉", fg = "#30638e" }, 535 + { name = "gz", text = "", fg = "#eca517" }, 536 + { name = "h", text = "", fg = "#a074c4" }, 537 + { name = "haml", text = "", fg = "#eaeae1" }, 538 + { name = "hbs", text = "", fg = "#f0772b" }, 539 + { name = "heex", text = "", fg = "#a074c4" }, 540 + { name = "hex", text = "", fg = "#2e63ff" }, 541 + { name = "hh", text = "", fg = "#a074c4" }, 542 + { name = "hpp", text = "", fg = "#a074c4" }, 543 + { name = "hrl", text = "", fg = "#b83998" }, 544 + { name = "hs", text = "", fg = "#a074c4" }, 545 + { name = "htm", text = "", fg = "#e34c26" }, 546 + { name = "html", text = "", fg = "#e44d26" }, 547 + { name = "http", text = "", fg = "#008ec7" }, 548 + { name = "huff", text = "󰡘", fg = "#4242c7" }, 549 + { name = "hurl", text = "", fg = "#ff0288" }, 550 + { name = "hx", text = "", fg = "#ea8220" }, 551 + { name = "hxx", text = "", fg = "#a074c4" }, 552 + { name = "ical", text = "", fg = "#2b2e83" }, 553 + { name = "icalendar", text = "", fg = "#2b2e83" }, 554 + { name = "ico", text = "", fg = "#cbcb41" }, 555 + { name = "ics", text = "", fg = "#2b2e83" }, 556 + { name = "ifb", text = "", fg = "#2b2e83" }, 557 + { name = "ifc", text = "󰻫", fg = "#839463" }, 558 + { name = "ige", text = "󰻫", fg = "#839463" }, 559 + { name = "iges", text = "󰻫", fg = "#839463" }, 560 + { name = "igs", text = "󰻫", fg = "#839463" }, 561 + { name = "image", text = "", fg = "#d0bec8" }, 562 + { name = "img", text = "", fg = "#d0bec8" }, 563 + { name = "import", text = "", fg = "#ececec" }, 564 + { name = "info", text = "", fg = "#ffffcd" }, 565 + { name = "ini", text = "", fg = "#6d8086" }, 566 + { name = "ino", text = "", fg = "#56b6c2" }, 567 + { name = "ipynb", text = "", fg = "#f57d01" }, 568 + { name = "iso", text = "", fg = "#d0bec8" }, 569 + { name = "ixx", text = "", fg = "#519aba" }, 570 + { name = "java", text = "", fg = "#cc3e44" }, 571 + { name = "jl", text = "", fg = "#a270ba" }, 572 + { name = "jpeg", text = "", fg = "#a074c4" }, 573 + { name = "jpg", text = "", fg = "#a074c4" }, 574 + { name = "js", text = "", fg = "#cbcb41" }, 575 + { name = "json", text = "", fg = "#cbcb41" }, 576 + { name = "json5", text = "", fg = "#cbcb41" }, 577 + { name = "jsonc", text = "", fg = "#cbcb41" }, 578 + { name = "jsx", text = "", fg = "#20c2e3" }, 579 + { name = "jwmrc", text = "", fg = "#0078cd" }, 580 + { name = "jxl", text = "", fg = "#a074c4" }, 581 + { name = "kbx", text = "󰯄", fg = "#737672" }, 582 + { name = "kdb", text = "", fg = "#529b34" }, 583 + { name = "kdbx", text = "", fg = "#529b34" }, 584 + { name = "kdenlive", text = "", fg = "#83b8f2" }, 585 + { name = "kdenlivetitle", text = "", fg = "#83b8f2" }, 586 + { name = "kicad_dru", text = "", fg = "#ffffff" }, 587 + { name = "kicad_mod", text = "", fg = "#ffffff" }, 588 + { name = "kicad_pcb", text = "", fg = "#ffffff" }, 589 + { name = "kicad_prl", text = "", fg = "#ffffff" }, 590 + { name = "kicad_pro", text = "", fg = "#ffffff" }, 591 + { name = "kicad_sch", text = "", fg = "#ffffff" }, 592 + { name = "kicad_sym", text = "", fg = "#ffffff" }, 593 + { name = "kicad_wks", text = "", fg = "#ffffff" }, 594 + { name = "ko", text = "", fg = "#dcddd6" }, 595 + { name = "kpp", text = "", fg = "#f245fb" }, 596 + { name = "kra", text = "", fg = "#f245fb" }, 597 + { name = "krz", text = "", fg = "#f245fb" }, 598 + { name = "ksh", text = "", fg = "#4d5a5e" }, 599 + { name = "kt", text = "", fg = "#7f52ff" }, 600 + { name = "kts", text = "", fg = "#7f52ff" }, 601 + { name = "lck", text = "", fg = "#bbbbbb" }, 602 + { name = "leex", text = "", fg = "#a074c4" }, 603 + { name = "less", text = "", fg = "#563d7c" }, 604 + { name = "lff", text = "", fg = "#ececec" }, 605 + { name = "lhs", text = "", fg = "#a074c4" }, 606 + { name = "lib", text = "", fg = "#4d2c0b" }, 607 + { name = "license", text = "", fg = "#cbcb41" }, 608 + { name = "liquid", text = "", fg = "#95bf47" }, 609 + { name = "lock", text = "", fg = "#bbbbbb" }, 610 + { name = "log", text = "󰌱", fg = "#dddddd" }, 611 + { name = "lrc", text = "󰨖", fg = "#ffb713" }, 612 + { name = "lua", text = "", fg = "#51a0cf" }, 613 + { name = "luac", text = "", fg = "#51a0cf" }, 614 + { name = "luau", text = "", fg = "#00a2ff" }, 615 + { name = "m", text = "", fg = "#599eff" }, 616 + { name = "m3u", text = "󰲹", fg = "#ed95ae" }, 617 + { name = "m3u8", text = "󰲹", fg = "#ed95ae" }, 618 + { name = "m4a", text = "", fg = "#00afff" }, 619 + { name = "m4v", text = "", fg = "#fd971f" }, 620 + { name = "magnet", text = "", fg = "#a51b16" }, 621 + { name = "makefile", text = "", fg = "#6d8086" }, 622 + { name = "markdown", text = "", fg = "#dddddd" }, 623 + { name = "material", text = "", fg = "#b83998" }, 624 + { name = "md", text = "", fg = "#dddddd" }, 625 + { name = "md5", text = "󰕥", fg = "#8c86af" }, 626 + { name = "mdx", text = "", fg = "#519aba" }, 627 + { name = "mint", text = "󰌪", fg = "#87c095" }, 628 + { name = "mjs", text = "", fg = "#f1e05a" }, 629 + { name = "mk", text = "", fg = "#6d8086" }, 630 + { name = "mkv", text = "", fg = "#fd971f" }, 631 + { name = "ml", text = "", fg = "#e37933" }, 632 + { name = "mli", text = "", fg = "#e37933" }, 633 + { name = "mm", text = "", fg = "#519aba" }, 634 + { name = "mo", text = "", fg = "#9772fb" }, 635 + { name = "mobi", text = "", fg = "#eab16d" }, 636 + { name = "mojo", text = "", fg = "#ff4c1f" }, 637 + { name = "mov", text = "", fg = "#fd971f" }, 638 + { name = "mp3", text = "", fg = "#00afff" }, 639 + { name = "mp4", text = "", fg = "#fd971f" }, 640 + { name = "mpp", text = "", fg = "#519aba" }, 641 + { name = "msf", text = "", fg = "#137be1" }, 642 + { name = "mts", text = "", fg = "#519aba" }, 643 + { name = "mustache", text = "", fg = "#e37933" }, 644 + { name = "nfo", text = "", fg = "#ffffcd" }, 645 + { name = "nim", text = "", fg = "#f3d400" }, 646 + { name = "nix", text = "", fg = "#7ebae4" }, 647 + { name = "norg", text = "", fg = "#4878be" }, 648 + { name = "nswag", text = "", fg = "#85ea2d" }, 649 + { name = "nu", text = "", fg = "#3aa675" }, 650 + { name = "o", text = "", fg = "#9f0500" }, 651 + { name = "obj", text = "󰆧", fg = "#888888" }, 652 + { name = "odf", text = "", fg = "#ff5a96" }, 653 + { name = "odg", text = "", fg = "#fffb57" }, 654 + { name = "odin", text = "󰟢", fg = "#3882d2" }, 655 + { name = "odp", text = "", fg = "#fe9c45" }, 656 + { name = "ods", text = "", fg = "#78fc4e" }, 657 + { name = "odt", text = "", fg = "#2dcbfd" }, 658 + { name = "oga", text = "", fg = "#0075aa" }, 659 + { name = "ogg", text = "", fg = "#0075aa" }, 660 + { name = "ogv", text = "", fg = "#fd971f" }, 661 + { name = "ogx", text = "", fg = "#fd971f" }, 662 + { name = "opus", text = "", fg = "#0075aa" }, 663 + { name = "org", text = "", fg = "#77aa99" }, 664 + { name = "otf", text = "", fg = "#ececec" }, 665 + { name = "out", text = "", fg = "#9f0500" }, 666 + { name = "part", text = "", fg = "#44cda8" }, 667 + { name = "patch", text = "", fg = "#41535b" }, 668 + { name = "pck", text = "", fg = "#6d8086" }, 669 + { name = "pcm", text = "", fg = "#0075aa" }, 670 + { name = "pdf", text = "", fg = "#b30b00" }, 671 + { name = "php", text = "", fg = "#a074c4" }, 672 + { name = "pl", text = "", fg = "#519aba" }, 673 + { name = "pls", text = "󰲹", fg = "#ed95ae" }, 674 + { name = "ply", text = "󰆧", fg = "#888888" }, 675 + { name = "pm", text = "", fg = "#519aba" }, 676 + { name = "png", text = "", fg = "#a074c4" }, 677 + { name = "po", text = "", fg = "#2596be" }, 678 + { name = "pot", text = "", fg = "#2596be" }, 679 + { name = "pp", text = "", fg = "#ffa61a" }, 680 + { name = "ppt", text = "󰈧", fg = "#cb4a32" }, 681 + { name = "pptx", text = "󰈧", fg = "#cb4a32" }, 682 + { name = "prisma", text = "", fg = "#5a67d8" }, 683 + { name = "pro", text = "", fg = "#e4b854" }, 684 + { name = "ps1", text = "󰨊", fg = "#4273ca" }, 685 + { name = "psb", text = "", fg = "#519aba" }, 686 + { name = "psd", text = "", fg = "#519aba" }, 687 + { name = "psd1", text = "󰨊", fg = "#6975c4" }, 688 + { name = "psm1", text = "󰨊", fg = "#6975c4" }, 689 + { name = "pub", text = "󰷖", fg = "#e3c58e" }, 690 + { name = "pxd", text = "", fg = "#5aa7e4" }, 691 + { name = "pxi", text = "", fg = "#5aa7e4" }, 692 + { name = "py", text = "", fg = "#ffbc03" }, 693 + { name = "pyc", text = "", fg = "#ffe291" }, 694 + { name = "pyd", text = "", fg = "#ffe291" }, 695 + { name = "pyi", text = "", fg = "#ffbc03" }, 696 + { name = "pyo", text = "", fg = "#ffe291" }, 697 + { name = "pyw", text = "", fg = "#5aa7e4" }, 698 + { name = "pyx", text = "", fg = "#5aa7e4" }, 699 + { name = "qm", text = "", fg = "#2596be" }, 700 + { name = "qml", text = "", fg = "#40cd52" }, 701 + { name = "qrc", text = "", fg = "#40cd52" }, 702 + { name = "qss", text = "", fg = "#40cd52" }, 703 + { name = "query", text = "", fg = "#90a850" }, 704 + { name = "r", text = "󰟔", fg = "#2266ba" }, 705 + { name = "R", text = "󰟔", fg = "#2266ba" }, 706 + { name = "rake", text = "", fg = "#701516" }, 707 + { name = "rar", text = "", fg = "#eca517" }, 708 + { name = "razor", text = "󱦘", fg = "#512bd4" }, 709 + { name = "rb", text = "", fg = "#701516" }, 710 + { name = "res", text = "", fg = "#cc3e44" }, 711 + { name = "resi", text = "", fg = "#f55385" }, 712 + { name = "rlib", text = "", fg = "#dea584" }, 713 + { name = "rmd", text = "", fg = "#519aba" }, 714 + { name = "rproj", text = "󰗆", fg = "#358a5b" }, 715 + { name = "rs", text = "", fg = "#dea584" }, 716 + { name = "rss", text = "", fg = "#fb9d3b" }, 717 + { name = "s", text = "", fg = "#0071c5" }, 718 + { name = "sass", text = "", fg = "#f55385" }, 719 + { name = "sbt", text = "", fg = "#cc3e44" }, 720 + { name = "sc", text = "", fg = "#cc3e44" }, 721 + { name = "scad", text = "", fg = "#f9d72c" }, 722 + { name = "scala", text = "", fg = "#cc3e44" }, 723 + { name = "scm", text = "󰘧", fg = "#eeeeee" }, 724 + { name = "scss", text = "", fg = "#f55385" }, 725 + { name = "sh", text = "", fg = "#4d5a5e" }, 726 + { name = "sha1", text = "󰕥", fg = "#8c86af" }, 727 + { name = "sha224", text = "󰕥", fg = "#8c86af" }, 728 + { name = "sha256", text = "󰕥", fg = "#8c86af" }, 729 + { name = "sha384", text = "󰕥", fg = "#8c86af" }, 730 + { name = "sha512", text = "󰕥", fg = "#8c86af" }, 731 + { name = "sig", text = "󰘧", fg = "#e37933" }, 732 + { name = "signature", text = "󰘧", fg = "#e37933" }, 733 + { name = "skp", text = "󰻫", fg = "#839463" }, 734 + { name = "sldasm", text = "󰻫", fg = "#839463" }, 735 + { name = "sldprt", text = "󰻫", fg = "#839463" }, 736 + { name = "slim", text = "", fg = "#e34c26" }, 737 + { name = "sln", text = "", fg = "#854cc7" }, 738 + { name = "slnx", text = "", fg = "#854cc7" }, 739 + { name = "slvs", text = "󰻫", fg = "#839463" }, 740 + { name = "sml", text = "󰘧", fg = "#e37933" }, 741 + { name = "so", text = "", fg = "#dcddd6" }, 742 + { name = "sol", text = "", fg = "#519aba" }, 743 + { name = "spec.js", text = "", fg = "#cbcb41" }, 744 + { name = "spec.jsx", text = "", fg = "#20c2e3" }, 745 + { name = "spec.ts", text = "", fg = "#519aba" }, 746 + { name = "spec.tsx", text = "", fg = "#1354bf" }, 747 + { name = "spx", text = "", fg = "#0075aa" }, 748 + { name = "sql", text = "", fg = "#dad8d8" }, 749 + { name = "sqlite", text = "", fg = "#dad8d8" }, 750 + { name = "sqlite3", text = "", fg = "#dad8d8" }, 751 + { name = "srt", text = "󰨖", fg = "#ffb713" }, 752 + { name = "ssa", text = "󰨖", fg = "#ffb713" }, 753 + { name = "ste", text = "󰻫", fg = "#839463" }, 754 + { name = "step", text = "󰻫", fg = "#839463" }, 755 + { name = "stl", text = "󰆧", fg = "#888888" }, 756 + { name = "stp", text = "󰻫", fg = "#839463" }, 757 + { name = "strings", text = "", fg = "#2596be" }, 758 + { name = "styl", text = "", fg = "#8dc149" }, 759 + { name = "sub", text = "󰨖", fg = "#ffb713" }, 760 + { name = "sublime", text = "", fg = "#e37933" }, 761 + { name = "suo", text = "", fg = "#854cc7" }, 762 + { name = "sv", text = "󰍛", fg = "#019833" }, 763 + { name = "svelte", text = "", fg = "#ff3e00" }, 764 + { name = "svg", text = "󰜡", fg = "#ffb13b" }, 765 + { name = "svh", text = "󰍛", fg = "#019833" }, 766 + { name = "swift", text = "", fg = "#e37933" }, 767 + { name = "t", text = "", fg = "#519aba" }, 768 + { name = "tbc", text = "󰛓", fg = "#1e5cb3" }, 769 + { name = "tcl", text = "󰛓", fg = "#1e5cb3" }, 770 + { name = "templ", text = "", fg = "#dbbd30" }, 771 + { name = "terminal", text = "", fg = "#31b53e" }, 772 + { name = "test.js", text = "", fg = "#cbcb41" }, 773 + { name = "test.jsx", text = "", fg = "#20c2e3" }, 774 + { name = "test.ts", text = "", fg = "#519aba" }, 775 + { name = "test.tsx", text = "", fg = "#1354bf" }, 776 + { name = "tex", text = "", fg = "#3d6117" }, 777 + { name = "tf", text = "", fg = "#5f43e9" }, 778 + { name = "tfvars", text = "", fg = "#5f43e9" }, 779 + { name = "tgz", text = "", fg = "#eca517" }, 780 + { name = "tmux", text = "", fg = "#14ba19" }, 781 + { name = "toml", text = "", fg = "#9c4221" }, 782 + { name = "torrent", text = "", fg = "#44cda8" }, 783 + { name = "tres", text = "", fg = "#6d8086" }, 784 + { name = "ts", text = "", fg = "#519aba" }, 785 + { name = "tscn", text = "", fg = "#6d8086" }, 786 + { name = "tsconfig", text = "", fg = "#ff8700" }, 787 + { name = "tsx", text = "", fg = "#1354bf" }, 788 + { name = "ttf", text = "", fg = "#ececec" }, 789 + { name = "twig", text = "", fg = "#8dc149" }, 790 + { name = "txt", text = "󰈙", fg = "#89e051" }, 791 + { name = "txz", text = "", fg = "#eca517" }, 792 + { name = "typ", text = "", fg = "#0dbcc0" }, 793 + { name = "typoscript", text = "", fg = "#ff8700" }, 794 + { name = "ui", text = "", fg = "#015bf0" }, 795 + { name = "v", text = "󰍛", fg = "#019833" }, 796 + { name = "vala", text = "", fg = "#7b3db9" }, 797 + { name = "vh", text = "󰍛", fg = "#019833" }, 798 + { name = "vhd", text = "󰍛", fg = "#019833" }, 799 + { name = "vhdl", text = "󰍛", fg = "#019833" }, 800 + { name = "vi", text = "", fg = "#fec60a" }, 801 + { name = "vim", text = "", fg = "#019833" }, 802 + { name = "vsh", text = "", fg = "#5d87bf" }, 803 + { name = "vsix", text = "", fg = "#854cc7" }, 804 + { name = "vue", text = "", fg = "#8dc149" }, 805 + { name = "wasm", text = "", fg = "#5c4cdb" }, 806 + { name = "wav", text = "", fg = "#00afff" }, 807 + { name = "webm", text = "", fg = "#fd971f" }, 808 + { name = "webmanifest", text = "", fg = "#f1e05a" }, 809 + { name = "webp", text = "", fg = "#a074c4" }, 810 + { name = "webpack", text = "󰜫", fg = "#519aba" }, 811 + { name = "wma", text = "", fg = "#00afff" }, 812 + { name = "woff", text = "", fg = "#ececec" }, 813 + { name = "woff2", text = "", fg = "#ececec" }, 814 + { name = "wrl", text = "󰆧", fg = "#888888" }, 815 + { name = "wrz", text = "󰆧", fg = "#888888" }, 816 + { name = "wv", text = "", fg = "#00afff" }, 817 + { name = "wvc", text = "", fg = "#00afff" }, 818 + { name = "x", text = "", fg = "#599eff" }, 819 + { name = "xaml", text = "󰙳", fg = "#512bd4" }, 820 + { name = "xcf", text = "", fg = "#635b46" }, 821 + { name = "xcplayground", text = "", fg = "#e37933" }, 822 + { name = "xcstrings", text = "", fg = "#2596be" }, 823 + { name = "xls", text = "󰈛", fg = "#207245" }, 824 + { name = "xlsx", text = "󰈛", fg = "#207245" }, 825 + { name = "xm", text = "", fg = "#519aba" }, 826 + { name = "xml", text = "󰗀", fg = "#e37933" }, 827 + { name = "xpi", text = "", fg = "#ff1b01" }, 828 + { name = "xul", text = "", fg = "#e37933" }, 829 + { name = "xz", text = "", fg = "#eca517" }, 830 + { name = "yaml", text = "", fg = "#6d8086" }, 831 + { name = "yml", text = "", fg = "#6d8086" }, 832 + { name = "zig", text = "", fg = "#f69a1b" }, 833 + { name = "zip", text = "", fg = "#eca517" }, 834 + { name = "zsh", text = "", fg = "#89e051" }, 835 + { name = "zst", text = "", fg = "#eca517" }, 836 + { name = "🔥", text = "", fg = "#ff4c1f" }, 837 + ] 838 + conds = [ 839 + # Special files 840 + { if = "orphan", text = "" }, 841 + { if = "link", text = "" }, 842 + { if = "block", text = "" }, 843 + { if = "char", text = "" }, 844 + { if = "fifo", text = "" }, 845 + { if = "sock", text = "" }, 846 + { if = "sticky", text = "" }, 847 + { if = "dummy", text = "" }, 848 + 849 + # Fallback 850 + { if = "dir", text = "" }, 851 + { if = "exec", text = "" }, 852 + { if = "!dir", text = "" }, 853 + ]
+12
yazi/yazi.toml
··· 1 + [manager] 2 + sort_by = "natural" 3 + sort_sensitive = false 4 + sort_dir_first = true 5 + sort_translit = true 6 + 7 + show_hidden = false 8 + show_symlink = true 9 + 10 + [preview] 11 + wrap = "no" 12 + tab_size = 8