···11+# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.
22+# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
33+"$schema" = "https://yazi-rs.github.io/schemas/keymap.json"
44+55+[manager]
66+77+keymap = [
88+ { on = "<Esc>", run = "escape", desc = "Exit visual mode, clear selected, or cancel search" },
99+ { on = "<C-[>", run = "escape", desc = "Exit visual mode, clear selected, or cancel search" },
1010+ { on = "q", run = "quit", desc = "Exit the process" },
1111+ { on = "Q", run = "quit --no-cwd-file", desc = "Exit the process without writing cwd-file" },
1212+ { on = "<C-c>", run = "close", desc = "Close the current tab, or quit if it is last tab" },
1313+ { on = "<C-z>", run = "suspend", desc = "Suspend the process" },
1414+1515+ # Hopping
1616+ { on = "k", run = "arrow -1", desc = "Move cursor up" },
1717+ { on = "j", run = "arrow 1", desc = "Move cursor down" },
1818+1919+ { on = "<Up>", run = "arrow -1", desc = "Move cursor up" },
2020+ { on = "<Down>", run = "arrow 1", desc = "Move cursor down" },
2121+2222+ { on = "<C-u>", run = "arrow -50%", desc = "Move cursor up half page" },
2323+ { on = "<C-d>", run = "arrow 50%", desc = "Move cursor down half page" },
2424+ { on = "<C-b>", run = "arrow -100%", desc = "Move cursor up one page" },
2525+ { on = "<C-f>", run = "arrow 100%", desc = "Move cursor down one page" },
2626+2727+ { on = "<S-PageUp>", run = "arrow -50%", desc = "Move cursor up half page" },
2828+ { on = "<S-PageDown>", run = "arrow 50%", desc = "Move cursor down half page" },
2929+ { on = "<PageUp>", run = "arrow -100%", desc = "Move cursor up one page" },
3030+ { on = "<PageDown>", run = "arrow 100%", desc = "Move cursor down one page" },
3131+3232+ { on = [
3333+ "g",
3434+ "g",
3535+ ], run = "arrow -99999999", desc = "Move cursor to the top" },
3636+ { on = "G", run = "arrow 99999999", desc = "Move cursor to the bottom" },
3737+3838+ # Navigation
3939+ { on = "h", run = "leave", desc = "Go back to the parent directory" },
4040+ { on = "l", run = "enter", desc = "Enter the child directory" },
4141+4242+ { on = "<Left>", run = "leave", desc = "Go back to the parent directory" },
4343+ { on = "<Right>", run = "enter", desc = "Enter the child directory" },
4444+4545+ { on = "H", run = "back", desc = "Go back to the previous directory" },
4646+ { on = "L", run = "forward", desc = "Go forward to the next directory" },
4747+4848+ # Seeking
4949+ { on = "K", run = "seek -5", desc = "Seek up 5 units in the preview" },
5050+ { on = "J", run = "seek 5", desc = "Seek down 5 units in the preview" },
5151+5252+ # Selection
5353+ { on = "<Space>", run = [
5454+ "select --state=none",
5555+ "arrow 1",
5656+ ], desc = "Toggle the current selection state" },
5757+ { on = "v", run = "visual_mode", desc = "Enter visual mode (selection mode)" },
5858+ { on = "V", run = "visual_mode --unset", desc = "Enter visual mode (unset mode)" },
5959+ { on = "<C-a>", run = "select_all --state=true", desc = "Select all files" },
6060+ { on = "<C-r>", run = "select_all --state=none", desc = "Inverse selection of all files" },
6161+6262+ # Operation
6363+ { on = "o", run = "open", desc = "Open selected files" },
6464+ { on = "O", run = "open --interactive", desc = "Open selected files interactively" },
6565+ { on = "<Enter>", run = "open", desc = "Open selected files" },
6666+ { on = "<S-Enter>", run = "open --interactive", desc = "Open selected files interactively" },
6767+ { on = "y", run = "yank", desc = "Yank selected files (copy)" },
6868+ { on = "x", run = "yank --cut", desc = "Yank selected files (cut)" },
6969+ { on = "p", run = "paste", desc = "Paste yanked files" },
7070+ { on = "P", run = "paste --force", desc = "Paste yanked files (overwrite if the destination exists)" },
7171+ { on = "-", run = "link", desc = "Symlink the absolute path of yanked files" },
7272+ { on = "_", run = "link --relative", desc = "Symlink the relative path of yanked files" },
7373+ { on = "Y", run = "unyank", desc = "Cancel the yank status" },
7474+ { on = "X", run = "unyank", desc = "Cancel the yank status" },
7575+ { on = "d", run = "remove", desc = "Trash selected files" },
7676+ { on = "D", run = "remove --permanently", desc = "Permanently delete selected files" },
7777+ { on = "a", run = "create", desc = "Create a file (ends with / for directories)" },
7878+ { on = "r", run = "rename --cursor=before_ext", desc = "Rename selected file(s)" },
7979+ { on = ";", run = "shell --interactive", desc = "Run a shell command" },
8080+ { on = ":", run = "shell --block --interactive", desc = "Run a shell command (block until finishes)" },
8181+ { on = ".", run = "hidden toggle", desc = "Toggle the visibility of hidden files" },
8282+ { on = "s", run = "search fd", desc = "Search files by name using fd" },
8383+ { on = "S", run = "search rg", desc = "Search files by content using ripgrep" },
8484+ { on = "<C-s>", run = "search none", desc = "Cancel the ongoing search" },
8585+ # { on = "z", run = "plugin zoxide", desc = "Jump to a directory using zoxide" },
8686+ { on = "z", run = "plugin fzf", desc = "Jump to a directory or reveal a file using fzf" },
8787+8888+ # Linemode
8989+ { on = [
9090+ "m",
9191+ "s",
9292+ ], run = "linemode size", desc = "Set linemode to size" },
9393+ { on = [
9494+ "m",
9595+ "p",
9696+ ], run = "linemode permissions", desc = "Set linemode to permissions" },
9797+ { on = [
9898+ "m",
9999+ "c",
100100+ ], run = "linemode ctime", desc = "Set linemode to ctime" },
101101+ { on = [
102102+ "m",
103103+ "m",
104104+ ], run = "linemode mtime", desc = "Set linemode to mtime" },
105105+ { on = [
106106+ "m",
107107+ "o",
108108+ ], run = "linemode owner", desc = "Set linemode to owner" },
109109+ { on = [
110110+ "m",
111111+ "n",
112112+ ], run = "linemode none", desc = "Set linemode to none" },
113113+114114+ # Copy
115115+ { on = [
116116+ "c",
117117+ "c",
118118+ ], run = "copy path", desc = "Copy the file path" },
119119+ { on = [
120120+ "c",
121121+ "d",
122122+ ], run = "copy dirname", desc = "Copy the directory path" },
123123+ { on = [
124124+ "c",
125125+ "f",
126126+ ], run = "copy filename", desc = "Copy the filename" },
127127+ { on = [
128128+ "c",
129129+ "n",
130130+ ], run = "copy name_without_ext", desc = "Copy the filename without extension" },
131131+132132+ # Filter
133133+ { on = "f", run = "filter --smart", desc = "Filter files" },
134134+135135+ # Find
136136+ { on = "/", run = "find --smart", desc = "Find next file" },
137137+ { on = "?", run = "find --previous --smart", desc = "Find previous file" },
138138+ { on = "n", run = "find_arrow", desc = "Go to the next found" },
139139+ { on = "N", run = "find_arrow --previous", desc = "Go to the previous found" },
140140+141141+ # Sorting
142142+ { on = [
143143+ ",",
144144+ "m",
145145+ ], run = [
146146+ "sort modified --reverse=no",
147147+ "linemode mtime",
148148+ ], desc = "Sort by modified time" },
149149+ { on = [
150150+ ",",
151151+ "M",
152152+ ], run = [
153153+ "sort modified --reverse",
154154+ "linemode mtime",
155155+ ], desc = "Sort by modified time (reverse)" },
156156+ { on = [
157157+ ",",
158158+ "c",
159159+ ], run = [
160160+ "sort created --reverse=no",
161161+ "linemode ctime",
162162+ ], desc = "Sort by created time" },
163163+ { on = [
164164+ ",",
165165+ "C",
166166+ ], run = [
167167+ "sort created --reverse",
168168+ "linemode ctime",
169169+ ], desc = "Sort by created time (reverse)" },
170170+ { on = [
171171+ ",",
172172+ "e",
173173+ ], run = "sort extension --reverse=no", desc = "Sort by extension" },
174174+ { on = [
175175+ ",",
176176+ "E",
177177+ ], run = "sort extension --reverse", desc = "Sort by extension (reverse)" },
178178+ { on = [
179179+ ",",
180180+ "a",
181181+ ], run = "sort alphabetical --reverse=no", desc = "Sort alphabetically" },
182182+ { on = [
183183+ ",",
184184+ "A",
185185+ ], run = "sort alphabetical --reverse", desc = "Sort alphabetically (reverse)" },
186186+ { on = [
187187+ ",",
188188+ "n",
189189+ ], run = "sort natural --reverse=no", desc = "Sort naturally" },
190190+ { on = [
191191+ ",",
192192+ "N",
193193+ ], run = "sort natural --reverse", desc = "Sort naturally (reverse)" },
194194+ { on = [
195195+ ",",
196196+ "s",
197197+ ], run = [
198198+ "sort size --reverse=no",
199199+ "linemode size",
200200+ ], desc = "Sort by size" },
201201+ { on = [
202202+ ",",
203203+ "S",
204204+ ], run = [
205205+ "sort size --reverse",
206206+ "linemode size",
207207+ ], desc = "Sort by size (reverse)" },
208208+ { on = [
209209+ ",",
210210+ "r",
211211+ ], run = "sort random --reverse=no", desc = "Sort randomly" },
212212+213213+ # Goto
214214+ { on = [
215215+ "g",
216216+ "h",
217217+ ], run = "cd ~", desc = "Go to the home directory" },
218218+ { on = [
219219+ "g",
220220+ "c",
221221+ ], run = "cd ~/.config", desc = "Go to the config directory" },
222222+ { on = [
223223+ "g",
224224+ "d",
225225+ ], run = "cd ~/Downloads", desc = "Go to the downloads directory" },
226226+ { on = [
227227+ "g",
228228+ "<Space>",
229229+ ], run = "cd --interactive", desc = "Go to a directory interactively" },
230230+231231+ # Tabs
232232+ { on = "t", run = "tab_create --current", desc = "Create a new tab with CWD" },
233233+234234+ { on = "1", run = "tab_switch 0", desc = "Switch to the first tab" },
235235+ { on = "2", run = "tab_switch 1", desc = "Switch to the second tab" },
236236+ { on = "3", run = "tab_switch 2", desc = "Switch to the third tab" },
237237+ { on = "4", run = "tab_switch 3", desc = "Switch to the fourth tab" },
238238+ { on = "5", run = "tab_switch 4", desc = "Switch to the fifth tab" },
239239+ { on = "6", run = "tab_switch 5", desc = "Switch to the sixth tab" },
240240+ { on = "7", run = "tab_switch 6", desc = "Switch to the seventh tab" },
241241+ { on = "8", run = "tab_switch 7", desc = "Switch to the eighth tab" },
242242+ { on = "9", run = "tab_switch 8", desc = "Switch to the ninth tab" },
243243+244244+ { on = "[", run = "tab_switch -1 --relative", desc = "Switch to the previous tab" },
245245+ { on = "]", run = "tab_switch 1 --relative", desc = "Switch to the next tab" },
246246+247247+ { on = "{", run = "tab_swap -1", desc = "Swap current tab with previous tab" },
248248+ { on = "}", run = "tab_swap 1", desc = "Swap current tab with next tab" },
249249+250250+ # Tasks
251251+ { on = "w", run = "tasks_show", desc = "Show task manager" },
252252+253253+ # Help
254254+ { on = "~", run = "help", desc = "Open help" },
255255+ { on = "<F1>", run = "help", desc = "Open help" },
256256+]
257257+258258+[tasks]
259259+260260+keymap = [
261261+ { on = "<Esc>", run = "close", desc = "Close task manager" },
262262+ { on = "<C-[>", run = "close", desc = "Close task manager" },
263263+ { on = "<C-c>", run = "close", desc = "Close task manager" },
264264+ { on = "w", run = "close", desc = "Close task manager" },
265265+266266+ { on = "k", run = "arrow -1", desc = "Move cursor up" },
267267+ { on = "j", run = "arrow 1", desc = "Move cursor down" },
268268+269269+ { on = "<Up>", run = "arrow -1", desc = "Move cursor up" },
270270+ { on = "<Down>", run = "arrow 1", desc = "Move cursor down" },
271271+272272+ { on = "<Enter>", run = "inspect", desc = "Inspect the task" },
273273+ { on = "x", run = "cancel", desc = "Cancel the task" },
274274+275275+ # Help
276276+ { on = "~", run = "help", desc = "Open help" },
277277+ { on = "<F1>", run = "help", desc = "Open help" },
278278+]
279279+280280+[select]
281281+282282+keymap = [
283283+ { on = "<Esc>", run = "close", desc = "Cancel selection" },
284284+ { on = "<C-[>", run = "close", desc = "Cancel selection" },
285285+ { on = "<C-c>", run = "close", desc = "Cancel selection" },
286286+ { on = "<Enter>", run = "close --submit", desc = "Submit the selection" },
287287+288288+ { on = "k", run = "arrow -1", desc = "Move cursor up" },
289289+ { on = "j", run = "arrow 1", desc = "Move cursor down" },
290290+291291+ { on = "<Up>", run = "arrow -1", desc = "Move cursor up" },
292292+ { on = "<Down>", run = "arrow 1", desc = "Move cursor down" },
293293+294294+ # Help
295295+ { on = "~", run = "help", desc = "Open help" },
296296+ { on = "<F1>", run = "help", desc = "Open help" },
297297+]
298298+299299+[input]
300300+301301+keymap = [
302302+ { on = "<C-c>", run = "close", desc = "Cancel input" },
303303+ { on = "<Enter>", run = "close --submit", desc = "Submit the input" },
304304+ { on = "<Esc>", run = "escape", desc = "Go back the normal mode, or cancel input" },
305305+ { on = "<C-[>", run = "escape", desc = "Go back the normal mode, or cancel input" },
306306+307307+ # Mode
308308+ { on = "i", run = "insert", desc = "Enter insert mode" },
309309+ { on = "a", run = "insert --append", desc = "Enter append mode" },
310310+ { on = "I", run = [
311311+ "move -999",
312312+ "insert",
313313+ ], desc = "Move to the BOL, and enter insert mode" },
314314+ { on = "A", run = [
315315+ "move 999",
316316+ "insert --append",
317317+ ], desc = "Move to the EOL, and enter append mode" },
318318+ { on = "v", run = "visual", desc = "Enter visual mode" },
319319+ { on = "V", run = [
320320+ "move -999",
321321+ "visual",
322322+ "move 999",
323323+ ], desc = "Enter visual mode and select all" },
324324+325325+ # Character-wise movement
326326+ { on = "h", run = "move -1", desc = "Move back a character" },
327327+ { on = "l", run = "move 1", desc = "Move forward a character" },
328328+ { on = "<Left>", run = "move -1", desc = "Move back a character" },
329329+ { on = "<Right>", run = "move 1", desc = "Move forward a character" },
330330+ { on = "<C-b>", run = "move -1", desc = "Move back a character" },
331331+ { on = "<C-f>", run = "move 1", desc = "Move forward a character" },
332332+333333+ # Word-wise movement
334334+ { on = "b", run = "backward", desc = "Move back to the start of the current or previous word" },
335335+ { on = "w", run = "forward", desc = "Move forward to the start of the next word" },
336336+ { on = "e", run = "forward --end-of-word", desc = "Move forward to the end of the current or next word" },
337337+ { on = "<A-b>", run = "backward", desc = "Move back to the start of the current or previous word" },
338338+ { on = "<A-f>", run = "forward --end-of-word", desc = "Move forward to the end of the current or next word" },
339339+340340+ # Line-wise movement
341341+ { on = "0", run = "move -999", desc = "Move to the BOL" },
342342+ { on = "$", run = "move 999", desc = "Move to the EOL" },
343343+ { on = "<C-a>", run = "move -999", desc = "Move to the BOL" },
344344+ { on = "<C-e>", run = "move 999", desc = "Move to the EOL" },
345345+ { on = "<Home>", run = "move -999", desc = "Move to the BOL" },
346346+ { on = "<End>", run = "move 999", desc = "Move to the EOL" },
347347+348348+ # Delete
349349+ { on = "<Backspace>", run = "backspace", desc = "Delete the character before the cursor" },
350350+ { on = "<Delete>", run = "backspace --under", desc = "Delete the character under the cursor" },
351351+ { on = "<C-h>", run = "backspace", desc = "Delete the character before the cursor" },
352352+ { on = "<C-d>", run = "backspace --under", desc = "Delete the character under the cursor" },
353353+354354+ # Kill
355355+ { on = "<C-u>", run = "kill bol", desc = "Kill backwards to the BOL" },
356356+ { on = "<C-k>", run = "kill eol", desc = "Kill forwards to the EOL" },
357357+ { on = "<C-w>", run = "kill backward", desc = "Kill backwards to the start of the current word" },
358358+ { on = "<A-d>", run = "kill forward", desc = "Kill forwards to the end of the current word" },
359359+360360+ # Cut/Yank/Paste
361361+ { on = "d", run = "delete --cut", desc = "Cut the selected characters" },
362362+ { on = "D", run = [
363363+ "delete --cut",
364364+ "move 999",
365365+ ], desc = "Cut until the EOL" },
366366+ { on = "c", run = "delete --cut --insert", desc = "Cut the selected characters, and enter insert mode" },
367367+ { on = "C", run = [
368368+ "delete --cut --insert",
369369+ "move 999",
370370+ ], desc = "Cut until the EOL, and enter insert mode" },
371371+ { on = "x", run = [
372372+ "delete --cut",
373373+ "move 1 --in-operating",
374374+ ], desc = "Cut the current character" },
375375+ { on = "y", run = "yank", desc = "Copy the selected characters" },
376376+ { on = "p", run = "paste", desc = "Paste the copied characters after the cursor" },
377377+ { on = "P", run = "paste --before", desc = "Paste the copied characters before the cursor" },
378378+379379+ # Undo/Redo
380380+ { on = "u", run = "undo", desc = "Undo the last operation" },
381381+ { on = "<C-r>", run = "redo", desc = "Redo the last operation" },
382382+383383+ # Help
384384+ { on = "~", run = "help", desc = "Open help" },
385385+ { on = "<F1>", run = "help", desc = "Open help" },
386386+]
387387+388388+[completion]
389389+390390+keymap = [
391391+ { on = "<C-c>", run = "close", desc = "Cancel completion" },
392392+ { on = "<Tab>", run = "close --submit", desc = "Submit the completion" },
393393+ { on = "<Enter>", run = [
394394+ "close --submit",
395395+ "close_input --submit",
396396+ ], desc = "Submit the completion and input" },
397397+398398+ { on = "<A-k>", run = "arrow -1", desc = "Move cursor up" },
399399+ { on = "<A-j>", run = "arrow 1", desc = "Move cursor down" },
400400+401401+ { on = "<Up>", run = "arrow -1", desc = "Move cursor up" },
402402+ { on = "<Down>", run = "arrow 1", desc = "Move cursor down" },
403403+404404+ { on = "<C-p>", run = "arrow -1", desc = "Move cursor up" },
405405+ { on = "<C-n>", run = "arrow 1", desc = "Move cursor down" },
406406+407407+ # Help
408408+ { on = "~", run = "help", desc = "Open help" },
409409+ { on = "<F1>", run = "help", desc = "Open help" },
410410+]
411411+412412+[help]
413413+414414+keymap = [
415415+ { on = "<Esc>", run = "escape", desc = "Clear the filter, or hide the help" },
416416+ { on = "<C-[>", run = "escape", desc = "Clear the filter, or hide the help" },
417417+ { on = "q", run = "close", desc = "Exit the process" },
418418+ { on = "<C-c>", run = "close", desc = "Hide the help" },
419419+420420+ # Navigation
421421+ { on = "k", run = "arrow -1", desc = "Move cursor up" },
422422+ { on = "j", run = "arrow 1", desc = "Move cursor down" },
423423+424424+ { on = "<Up>", run = "arrow -1", desc = "Move cursor up" },
425425+ { on = "<Down>", run = "arrow 1", desc = "Move cursor down" },
426426+427427+ # Filtering
428428+ { on = "/", run = "filter", desc = "Apply a filter for the help items" },
429429+]
+786
.config/yazi/theme.toml
···11+# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.
22+# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
33+"$schema" = "https://yazi-rs.github.io/schemas/theme.json"
44+55+# vim:fileencoding=utf-8:foldmethod=marker
66+77+# : Flavor {{{
88+99+[flavor]
1010+use = ""
1111+1212+# : }}}
1313+1414+# : Manager {{{
1515+1616+[manager]
1717+cwd = { fg = "cyan" }
1818+1919+# Hovered
2020+hovered = { reversed = true }
2121+preview_hovered = { underline = true }
2222+2323+# Find
2424+find_keyword = { fg = "yellow", bold = true, italic = true, underline = true }
2525+find_position = { fg = "magenta", bg = "reset", bold = true, italic = true }
2626+2727+# Marker
2828+marker_copied = { fg = "lightgreen", bg = "lightgreen" }
2929+marker_cut = { fg = "lightred", bg = "lightred" }
3030+marker_marked = { fg = "lightcyan", bg = "lightcyan" }
3131+marker_selected = { fg = "lightyellow", bg = "lightyellow" }
3232+3333+# Tab
3434+tab_active = { reversed = true }
3535+tab_inactive = {}
3636+tab_width = 1
3737+3838+# Count
3939+count_copied = { fg = "white", bg = "green" }
4040+count_cut = { fg = "white", bg = "red" }
4141+count_selected = { fg = "white", bg = "yellow" }
4242+4343+# Border
4444+border_symbol = "│"
4545+border_style = { fg = "gray" }
4646+4747+# Highlighting
4848+syntect_theme = ""
4949+5050+# : }}}
5151+5252+5353+# : Status {{{
5454+5555+[status]
5656+separator_open = ""
5757+separator_close = ""
5858+separator_style = { fg = "gray", bg = "gray" }
5959+6060+# Mode
6161+mode_normal = { bg = "blue", bold = true }
6262+mode_select = { bg = "red", bold = true }
6363+mode_unset = { bg = "red", bold = true }
6464+6565+# Progress
6666+progress_label = { bold = true }
6767+progress_normal = { fg = "blue", bg = "black" }
6868+progress_error = { fg = "red", bg = "black" }
6969+7070+# Permissions
7171+permissions_t = { fg = "green" }
7272+permissions_r = { fg = "yellow" }
7373+permissions_w = { fg = "red" }
7474+permissions_x = { fg = "cyan" }
7575+permissions_s = { fg = "darkgray" }
7676+7777+# : }}}
7878+7979+8080+# : Select {{{
8181+8282+[select]
8383+border = { fg = "blue" }
8484+active = { fg = "magenta", bold = true }
8585+inactive = {}
8686+8787+# : }}}
8888+8989+9090+# : Input {{{
9191+9292+[input]
9393+border = { fg = "blue" }
9494+title = {}
9595+value = {}
9696+selected = { reversed = true }
9797+9898+# : }}}
9999+100100+101101+# : Completion {{{
102102+103103+[completion]
104104+border = { fg = "blue" }
105105+active = { reversed = true }
106106+inactive = {}
107107+108108+# Icons
109109+icon_file = ""
110110+icon_folder = ""
111111+icon_command = ""
112112+113113+# : }}}
114114+115115+116116+# : Tasks {{{
117117+118118+[tasks]
119119+border = { fg = "blue" }
120120+title = {}
121121+hovered = { fg = "magenta", underline = true }
122122+123123+# : }}}
124124+125125+126126+# : Which {{{
127127+128128+[which]
129129+cols = 3
130130+mask = { bg = "black" }
131131+cand = { fg = "lightcyan" }
132132+rest = { fg = "darkgray" }
133133+desc = { fg = "lightmagenta" }
134134+separator = " "
135135+separator_style = { fg = "darkgray" }
136136+137137+# : }}}
138138+139139+140140+# : Help {{{
141141+142142+[help]
143143+on = { fg = "cyan" }
144144+run = { fg = "magenta" }
145145+desc = {}
146146+hovered = { reversed = true, bold = true }
147147+footer = { fg = "black", bg = "white" }
148148+149149+# : }}}
150150+151151+152152+# : Notify {{{
153153+154154+[notify]
155155+title_info = { fg = "green" }
156156+title_warn = { fg = "yellow" }
157157+title_error = { fg = "red" }
158158+159159+# Icons
160160+icon_info = ""
161161+icon_warn = ""
162162+icon_error = ""
163163+164164+# : }}}
165165+166166+167167+# : File-specific styles {{{
168168+169169+[filetype]
170170+171171+rules = [
172172+ # Images
173173+ { mime = "image/*", fg = "yellow" },
174174+175175+ # Media
176176+ { mime = "{audio,video}/*", fg = "magenta" },
177177+178178+ # Archives
179179+ { mime = "application/{,g}zip", fg = "red" },
180180+ { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "red" },
181181+182182+ # Documents
183183+ { mime = "application/{pdf,doc,rtf,vnd.*}", fg = "cyan" },
184184+185185+ # Empty files
186186+ # { mime = "inode/x-empty", fg = "red" },
187187+188188+ # Special files
189189+ { name = "*", is = "orphan", bg = "red" },
190190+ { name = "*", is = "exec", fg = "green" },
191191+192192+ # Dummy files
193193+ { name = "*", is = "dummy", bg = "red" },
194194+ { name = "*/", is = "dummy", bg = "red" },
195195+196196+ # Fallback
197197+ # { name = "*", fg = "white" },
198198+ { name = "*/", fg = "blue" },
199199+]
200200+201201+[icon]
202202+203203+globs = []
204204+dirs = [
205205+ { name = ".config", text = "" },
206206+ { name = ".git", text = "" },
207207+ { name = "Desktop", text = "" },
208208+ { name = "Development", text = "" },
209209+ { name = "Documents", text = "" },
210210+ { name = "Downloads", text = "" },
211211+ { name = "Library", text = "" },
212212+ { name = "Movies", text = "" },
213213+ { name = "Music", text = "" },
214214+ { name = "Pictures", text = "" },
215215+ { name = "Public", text = "" },
216216+ { name = "Videos", text = "" },
217217+]
218218+files = [
219219+ { name = ".babelrc", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
220220+ { name = ".bash_profile", text = "", fg_dark = "#89e051", fg_light = "#447028" },
221221+ { name = ".bashrc", text = "", fg_dark = "#89e051", fg_light = "#447028" },
222222+ { name = ".dockerignore", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
223223+ { name = ".ds_store", text = "", fg_dark = "#41535b", fg_light = "#41535b" },
224224+ { name = ".editorconfig", text = "", fg_dark = "#fff2f2", fg_light = "#333030" },
225225+ { name = ".env", text = "", fg_dark = "#faf743", fg_light = "#32310d" },
226226+ { name = ".eslintignore", text = "", fg_dark = "#4b32c3", fg_light = "#4b32c3" },
227227+ { name = ".eslintrc", text = "", fg_dark = "#4b32c3", fg_light = "#4b32c3" },
228228+ { name = ".gitattributes", text = "", fg_dark = "#f54d27", fg_light = "#b83a1d" },
229229+ { name = ".gitconfig", text = "", fg_dark = "#f54d27", fg_light = "#b83a1d" },
230230+ { name = ".gitignore", text = "", fg_dark = "#f54d27", fg_light = "#b83a1d" },
231231+ { name = ".gitlab-ci.yml", text = "", fg_dark = "#e24329", fg_light = "#aa321f" },
232232+ { name = ".gitmodules", text = "", fg_dark = "#f54d27", fg_light = "#b83a1d" },
233233+ { name = ".gtkrc-2.0", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
234234+ { name = ".gvimrc", text = "", fg_dark = "#019833", fg_light = "#017226" },
235235+ { name = ".luaurc", text = "", fg_dark = "#00a2ff", fg_light = "#007abf" },
236236+ { name = ".mailmap", text = "", fg_dark = "#41535b", fg_light = "#41535b" },
237237+ { name = ".npmignore", text = "", fg_dark = "#e8274b", fg_light = "#ae1d38" },
238238+ { name = ".npmrc", text = "", fg_dark = "#e8274b", fg_light = "#ae1d38" },
239239+ { name = ".prettierrc", text = "", fg_dark = "#4285f4", fg_light = "#3264b7" },
240240+ { name = ".settings.json", text = "", fg_dark = "#854cc7", fg_light = "#643995" },
241241+ { name = ".SRCINFO", text = "", fg_dark = "#0f94d2", fg_light = "#0b6f9e" },
242242+ { name = ".vimrc", text = "", fg_dark = "#019833", fg_light = "#017226" },
243243+ { name = ".Xauthority", text = "", fg_dark = "#e54d18", fg_light = "#ac3a12" },
244244+ { name = ".xinitrc", text = "", fg_dark = "#e54d18", fg_light = "#ac3a12" },
245245+ { name = ".Xresources", text = "", fg_dark = "#e54d18", fg_light = "#ac3a12" },
246246+ { name = ".xsession", text = "", fg_dark = "#e54d18", fg_light = "#ac3a12" },
247247+ { name = ".zprofile", text = "", fg_dark = "#89e051", fg_light = "#447028" },
248248+ { name = ".zshenv", text = "", fg_dark = "#89e051", fg_light = "#447028" },
249249+ { name = ".zshrc", text = "", fg_dark = "#89e051", fg_light = "#447028" },
250250+ { name = "_gvimrc", text = "", fg_dark = "#019833", fg_light = "#017226" },
251251+ { name = "_vimrc", text = "", fg_dark = "#019833", fg_light = "#017226" },
252252+ { name = "avif", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
253253+ { name = "brewfile", text = "", fg_dark = "#701516", fg_light = "#701516" },
254254+ { name = "bspwmrc", text = "", fg_dark = "#2f2f2f", fg_light = "#2f2f2f" },
255255+ { name = "build", text = "", fg_dark = "#89e051", fg_light = "#447028" },
256256+ { name = "build.gradle", text = "", fg_dark = "#005f87", fg_light = "#005f87" },
257257+ { name = "build.zig.zon", text = "", fg_dark = "#f69a1b", fg_light = "#7b4d0e" },
258258+ { name = "cantorrc", text = "", fg_dark = "#1c99f3", fg_light = "#1573b6" },
259259+ { name = "checkhealth", text = "", fg_dark = "#75b4fb", fg_light = "#3a5a7e" },
260260+ { name = "cmakelists.txt", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
261261+ { name = "commit_editmsg", text = "", fg_dark = "#f54d27", fg_light = "#b83a1d" },
262262+ { name = "compose.yaml", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
263263+ { name = "compose.yml", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
264264+ { name = "config", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
265265+ { name = "containerfile", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
266266+ { name = "copying", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
267267+ { name = "copying.lesser", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
268268+ { name = "docker-compose.yaml", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
269269+ { name = "docker-compose.yml", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
270270+ { name = "dockerfile", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
271271+ { name = "ext_typoscript_setup.txt", text = "", fg_dark = "#ff8700", fg_light = "#aa5a00" },
272272+ { name = "favicon.ico", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
273273+ { name = "fp-info-cache", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
274274+ { name = "fp-lib-table", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
275275+ { name = "FreeCAD.conf", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
276276+ { name = "gemfile$", text = "", fg_dark = "#701516", fg_light = "#701516" },
277277+ { name = "gnumakefile", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
278278+ { name = "gradle-wrapper.properties", text = "", fg_dark = "#005f87", fg_light = "#005f87" },
279279+ { name = "gradle.properties", text = "", fg_dark = "#005f87", fg_light = "#005f87" },
280280+ { name = "gradlew", text = "", fg_dark = "#005f87", fg_light = "#005f87" },
281281+ { name = "groovy", text = "", fg_dark = "#4a687c", fg_light = "#384e5d" },
282282+ { name = "gruntfile.babel.js", text = "", fg_dark = "#e37933", fg_light = "#975122" },
283283+ { name = "gruntfile.coffee", text = "", fg_dark = "#e37933", fg_light = "#975122" },
284284+ { name = "gruntfile.js", text = "", fg_dark = "#e37933", fg_light = "#975122" },
285285+ { name = "gruntfile.ts", text = "", fg_dark = "#e37933", fg_light = "#975122" },
286286+ { name = "gtkrc", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
287287+ { name = "gulpfile.babel.js", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
288288+ { name = "gulpfile.coffee", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
289289+ { name = "gulpfile.js", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
290290+ { name = "gulpfile.ts", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
291291+ { name = "hyprland.conf", text = "", fg_dark = "#00aaae", fg_light = "#008082" },
292292+ { name = "i3blocks.conf", text = "", fg_dark = "#e8ebee", fg_light = "#2e2f30" },
293293+ { name = "i3status.conf", text = "", fg_dark = "#e8ebee", fg_light = "#2e2f30" },
294294+ { name = "kalgebrarc", text = "", fg_dark = "#1c99f3", fg_light = "#1573b6" },
295295+ { name = "kdeglobals", text = "", fg_dark = "#1c99f3", fg_light = "#1573b6" },
296296+ { name = "kdenlive-layoutsrc", text = "", fg_dark = "#83b8f2", fg_light = "#425c79" },
297297+ { name = "kdenliverc", text = "", fg_dark = "#83b8f2", fg_light = "#425c79" },
298298+ { name = "kritadisplayrc", text = "", fg_dark = "#f245fb", fg_light = "#a12ea7" },
299299+ { name = "kritarc", text = "", fg_dark = "#f245fb", fg_light = "#a12ea7" },
300300+ { name = "license", text = "", fg_dark = "#d0bf41", fg_light = "#686020" },
301301+ { name = "lxde-rc.xml", text = "", fg_dark = "#909090", fg_light = "#606060" },
302302+ { name = "lxqt.conf", text = "", fg_dark = "#0192d3", fg_light = "#016e9e" },
303303+ { name = "makefile", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
304304+ { name = "mix.lock", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
305305+ { name = "mpv.conf", text = "", fg_dark = "#3b1342", fg_light = "#3b1342" },
306306+ { name = "node_modules", text = "", fg_dark = "#e8274b", fg_light = "#ae1d38" },
307307+ { name = "package-lock.json", text = "", fg_dark = "#7a0d21", fg_light = "#7a0d21" },
308308+ { name = "package.json", text = "", fg_dark = "#e8274b", fg_light = "#ae1d38" },
309309+ { name = "PKGBUILD", text = "", fg_dark = "#0f94d2", fg_light = "#0b6f9e" },
310310+ { name = "platformio.ini", text = "", fg_dark = "#f6822b", fg_light = "#a4571d" },
311311+ { name = "pom.xml", text = "", fg_dark = "#7a0d21", fg_light = "#7a0d21" },
312312+ { name = "procfile", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
313313+ { name = "PrusaSlicer.ini", text = "", fg_dark = "#ec6b23", fg_light = "#9d4717" },
314314+ { name = "PrusaSlicerGcodeViewer.ini", text = "", fg_dark = "#ec6b23", fg_light = "#9d4717" },
315315+ { name = "py.typed", text = "", fg_dark = "#ffbc03", fg_light = "#805e02" },
316316+ { name = "QtProject.conf", text = "", fg_dark = "#40cd52", fg_light = "#2b8937" },
317317+ { name = "R", text = "", fg_dark = "#2266ba", fg_light = "#1a4c8c" },
318318+ { name = "r", text = "", fg_dark = "#2266ba", fg_light = "#1a4c8c" },
319319+ { name = "rakefile", text = "", fg_dark = "#701516", fg_light = "#701516" },
320320+ { name = "rmd", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
321321+ { name = "settings.gradle", text = "", fg_dark = "#005f87", fg_light = "#005f87" },
322322+ { name = "svelte.config.js", text = "", fg_dark = "#ff3e00", fg_light = "#bf2e00" },
323323+ { name = "sxhkdrc", text = "", fg_dark = "#2f2f2f", fg_light = "#2f2f2f" },
324324+ { name = "sym-lib-table", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
325325+ { name = "tailwind.config.js", text = "", fg_dark = "#20c2e3", fg_light = "#158197" },
326326+ { name = "tailwind.config.mjs", text = "", fg_dark = "#20c2e3", fg_light = "#158197" },
327327+ { name = "tailwind.config.ts", text = "", fg_dark = "#20c2e3", fg_light = "#158197" },
328328+ { name = "tmux.conf", text = "", fg_dark = "#14ba19", fg_light = "#0f8c13" },
329329+ { name = "tmux.conf.local", text = "", fg_dark = "#14ba19", fg_light = "#0f8c13" },
330330+ { name = "tsconfig.json", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
331331+ { name = "unlicense", text = "", fg_dark = "#d0bf41", fg_light = "#686020" },
332332+ { name = "vagrantfile$", text = "", fg_dark = "#1563ff", fg_light = "#104abf" },
333333+ { name = "vlcrc", text = "", fg_dark = "#ee7a00", fg_light = "#9f5100" },
334334+ { name = "webpack", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
335335+ { name = "weston.ini", text = "", fg_dark = "#ffbb01", fg_light = "#805e00" },
336336+ { name = "workspace", text = "", fg_dark = "#89e051", fg_light = "#447028" },
337337+ { name = "xmobarrc", text = "", fg_dark = "#fd4d5d", fg_light = "#a9333e" },
338338+ { name = "xmobarrc.hs", text = "", fg_dark = "#fd4d5d", fg_light = "#a9333e" },
339339+ { name = "xmonad.hs", text = "", fg_dark = "#fd4d5d", fg_light = "#a9333e" },
340340+ { name = "xorg.conf", text = "", fg_dark = "#e54d18", fg_light = "#ac3a12" },
341341+ { name = "xsettingsd.conf", text = "", fg_dark = "#e54d18", fg_light = "#ac3a12" },
342342+]
343343+exts = [
344344+ { name = "3gp", text = "", fg_dark = "#fd971f", fg_light = "#7e4c10" },
345345+ { name = "3mf", text = "", fg_dark = "#888888", fg_light = "#5b5b5b" },
346346+ { name = "7z", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
347347+ { name = "a", text = "", fg_dark = "#dcddd6", fg_light = "#494a47" },
348348+ { name = "aac", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
349349+ { name = "ai", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
350350+ { name = "aif", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
351351+ { name = "aiff", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
352352+ { name = "android", text = "", fg_dark = "#34a853", fg_light = "#277e3e" },
353353+ { name = "ape", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
354354+ { name = "apk", text = "", fg_dark = "#34a853", fg_light = "#277e3e" },
355355+ { name = "app", text = "", fg_dark = "#9f0500", fg_light = "#9f0500" },
356356+ { name = "applescript", text = "", fg_dark = "#6d8085", fg_light = "#526064" },
357357+ { name = "asc", text = "", fg_dark = "#576d7f", fg_light = "#41525f" },
358358+ { name = "ass", text = "", fg_dark = "#ffb713", fg_light = "#805c0a" },
359359+ { name = "astro", text = "", fg_dark = "#e23f67", fg_light = "#aa2f4d" },
360360+ { name = "awk", text = "", fg_dark = "#4d5a5e", fg_light = "#3a4446" },
361361+ { name = "azcli", text = "", fg_dark = "#0078d4", fg_light = "#005a9f" },
362362+ { name = "bak", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
363363+ { name = "bash", text = "", fg_dark = "#89e051", fg_light = "#447028" },
364364+ { name = "bat", text = "", fg_dark = "#c1f12e", fg_light = "#40500f" },
365365+ { name = "bazel", text = "", fg_dark = "#89e051", fg_light = "#447028" },
366366+ { name = "bib", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
367367+ { name = "bicep", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
368368+ { name = "bicepparam", text = "", fg_dark = "#9f74b3", fg_light = "#6a4d77" },
369369+ { name = "bin", text = "", fg_dark = "#9f0500", fg_light = "#9f0500" },
370370+ { name = "blade.php", text = "", fg_dark = "#f05340", fg_light = "#a0372b" },
371371+ { name = "blend", text = "", fg_dark = "#ea7600", fg_light = "#9c4f00" },
372372+ { name = "blp", text = "", fg_dark = "#5796e2", fg_light = "#3a6497" },
373373+ { name = "bmp", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
374374+ { name = "brep", text = "", fg_dark = "#839463", fg_light = "#576342" },
375375+ { name = "bz", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
376376+ { name = "bz2", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
377377+ { name = "bz3", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
378378+ { name = "bzl", text = "", fg_dark = "#89e051", fg_light = "#447028" },
379379+ { name = "c", text = "", fg_dark = "#599eff", fg_light = "#3b69aa" },
380380+ { name = "c++", text = "", fg_dark = "#f34b7d", fg_light = "#a23253" },
381381+ { name = "cache", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
382382+ { name = "cast", text = "", fg_dark = "#fd971f", fg_light = "#7e4c10" },
383383+ { name = "cbl", text = "⚙", fg_dark = "#005ca5", fg_light = "#005ca5" },
384384+ { name = "cc", text = "", fg_dark = "#f34b7d", fg_light = "#a23253" },
385385+ { name = "ccm", text = "", fg_dark = "#f34b7d", fg_light = "#a23253" },
386386+ { name = "cfg", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
387387+ { name = "cjs", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
388388+ { name = "clj", text = "", fg_dark = "#8dc149", fg_light = "#466024" },
389389+ { name = "cljc", text = "", fg_dark = "#8dc149", fg_light = "#466024" },
390390+ { name = "cljd", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
391391+ { name = "cljs", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
392392+ { name = "cmake", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
393393+ { name = "cob", text = "⚙", fg_dark = "#005ca5", fg_light = "#005ca5" },
394394+ { name = "cobol", text = "⚙", fg_dark = "#005ca5", fg_light = "#005ca5" },
395395+ { name = "coffee", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
396396+ { name = "conf", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
397397+ { name = "config.ru", text = "", fg_dark = "#701516", fg_light = "#701516" },
398398+ { name = "cp", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
399399+ { name = "cpp", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
400400+ { name = "cppm", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
401401+ { name = "cpy", text = "⚙", fg_dark = "#005ca5", fg_light = "#005ca5" },
402402+ { name = "cr", text = "", fg_dark = "#c8c8c8", fg_light = "#434343" },
403403+ { name = "crdownload", text = "", fg_dark = "#44cda8", fg_light = "#226654" },
404404+ { name = "cs", text = "", fg_dark = "#596706", fg_light = "#434d04" },
405405+ { name = "csh", text = "", fg_dark = "#4d5a5e", fg_light = "#3a4446" },
406406+ { name = "cshtml", text = "", fg_dark = "#512bd4", fg_light = "#512bd4" },
407407+ { name = "cson", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
408408+ { name = "csproj", text = "", fg_dark = "#512bd4", fg_light = "#512bd4" },
409409+ { name = "css", text = "", fg_dark = "#42a5f5", fg_light = "#2c6ea3" },
410410+ { name = "csv", text = "", fg_dark = "#89e051", fg_light = "#447028" },
411411+ { name = "cts", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
412412+ { name = "cu", text = "", fg_dark = "#89e051", fg_light = "#447028" },
413413+ { name = "cue", text = "", fg_dark = "#ed95ae", fg_light = "#764a57" },
414414+ { name = "cuh", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
415415+ { name = "cxx", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
416416+ { name = "cxxm", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
417417+ { name = "d", text = "", fg_dark = "#427819", fg_light = "#325a13" },
418418+ { name = "d.ts", text = "", fg_dark = "#d59855", fg_light = "#6a4c2a" },
419419+ { name = "dart", text = "", fg_dark = "#03589c", fg_light = "#03589c" },
420420+ { name = "db", text = "", fg_dark = "#dad8d8", fg_light = "#494848" },
421421+ { name = "dconf", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
422422+ { name = "desktop", text = "", fg_dark = "#563d7c", fg_light = "#563d7c" },
423423+ { name = "diff", text = "", fg_dark = "#41535b", fg_light = "#41535b" },
424424+ { name = "dll", text = "", fg_dark = "#4d2c0b", fg_light = "#4d2c0b" },
425425+ { name = "doc", text = "", fg_dark = "#185abd", fg_light = "#185abd" },
426426+ { name = "Dockerfile", text = "", fg_dark = "#458ee6", fg_light = "#2e5f99" },
427427+ { name = "docx", text = "", fg_dark = "#185abd", fg_light = "#185abd" },
428428+ { name = "dot", text = "", fg_dark = "#30638e", fg_light = "#244a6a" },
429429+ { name = "download", text = "", fg_dark = "#44cda8", fg_light = "#226654" },
430430+ { name = "drl", text = "", fg_dark = "#ffafaf", fg_light = "#553a3a" },
431431+ { name = "dropbox", text = "", fg_dark = "#0061fe", fg_light = "#0049be" },
432432+ { name = "dump", text = "", fg_dark = "#dad8d8", fg_light = "#494848" },
433433+ { name = "dwg", text = "", fg_dark = "#839463", fg_light = "#576342" },
434434+ { name = "dxf", text = "", fg_dark = "#839463", fg_light = "#576342" },
435435+ { name = "ebook", text = "", fg_dark = "#eab16d", fg_light = "#755836" },
436436+ { name = "edn", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
437437+ { name = "eex", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
438438+ { name = "ejs", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
439439+ { name = "el", text = "", fg_dark = "#8172be", fg_light = "#61568e" },
440440+ { name = "elc", text = "", fg_dark = "#8172be", fg_light = "#61568e" },
441441+ { name = "elf", text = "", fg_dark = "#9f0500", fg_light = "#9f0500" },
442442+ { name = "elm", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
443443+ { name = "eln", text = "", fg_dark = "#8172be", fg_light = "#61568e" },
444444+ { name = "env", text = "", fg_dark = "#faf743", fg_light = "#32310d" },
445445+ { name = "eot", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
446446+ { name = "epp", text = "", fg_dark = "#ffa61a", fg_light = "#80530d" },
447447+ { name = "epub", text = "", fg_dark = "#eab16d", fg_light = "#755836" },
448448+ { name = "erb", text = "", fg_dark = "#701516", fg_light = "#701516" },
449449+ { name = "erl", text = "", fg_dark = "#b83998", fg_light = "#8a2b72" },
450450+ { name = "ex", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
451451+ { name = "exe", text = "", fg_dark = "#9f0500", fg_light = "#9f0500" },
452452+ { name = "exs", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
453453+ { name = "f#", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
454454+ { name = "f3d", text = "", fg_dark = "#839463", fg_light = "#576342" },
455455+ { name = "f90", text = "", fg_dark = "#734f96", fg_light = "#563b70" },
456456+ { name = "fbx", text = "", fg_dark = "#888888", fg_light = "#5b5b5b" },
457457+ { name = "fcbak", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
458458+ { name = "fcmacro", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
459459+ { name = "fcmat", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
460460+ { name = "fcparam", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
461461+ { name = "fcscript", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
462462+ { name = "fcstd", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
463463+ { name = "fcstd1", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
464464+ { name = "fctb", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
465465+ { name = "fctl", text = "", fg_dark = "#cb0d0d", fg_light = "#cb0d0d" },
466466+ { name = "fdmdownload", text = "", fg_dark = "#44cda8", fg_light = "#226654" },
467467+ { name = "fish", text = "", fg_dark = "#4d5a5e", fg_light = "#3a4446" },
468468+ { name = "flac", text = "", fg_dark = "#0075aa", fg_light = "#005880" },
469469+ { name = "flc", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
470470+ { name = "flf", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
471471+ { name = "fnl", text = "", fg_dark = "#fff3d7", fg_light = "#33312b" },
472472+ { name = "fs", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
473473+ { name = "fsi", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
474474+ { name = "fsscript", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
475475+ { name = "fsx", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
476476+ { name = "gcode", text = "", fg_dark = "#1471ad", fg_light = "#0f5582" },
477477+ { name = "gd", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
478478+ { name = "gemspec", text = "", fg_dark = "#701516", fg_light = "#701516" },
479479+ { name = "gif", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
480480+ { name = "git", text = "", fg_dark = "#f14c28", fg_light = "#b5391e" },
481481+ { name = "glb", text = "", fg_dark = "#ffb13b", fg_light = "#80581e" },
482482+ { name = "gnumakefile", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
483483+ { name = "go", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
484484+ { name = "godot", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
485485+ { name = "gql", text = "", fg_dark = "#e535ab", fg_light = "#ac2880" },
486486+ { name = "graphql", text = "", fg_dark = "#e535ab", fg_light = "#ac2880" },
487487+ { name = "gresource", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
488488+ { name = "gv", text = "", fg_dark = "#30638e", fg_light = "#244a6a" },
489489+ { name = "gz", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
490490+ { name = "h", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
491491+ { name = "haml", text = "", fg_dark = "#eaeae1", fg_light = "#2f2f2d" },
492492+ { name = "hbs", text = "", fg_dark = "#f0772b", fg_light = "#a04f1d" },
493493+ { name = "heex", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
494494+ { name = "hex", text = "", fg_dark = "#2e63ff", fg_light = "#224abf" },
495495+ { name = "hh", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
496496+ { name = "hpp", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
497497+ { name = "hrl", text = "", fg_dark = "#b83998", fg_light = "#8a2b72" },
498498+ { name = "hs", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
499499+ { name = "htm", text = "", fg_dark = "#e34c26", fg_light = "#aa391c" },
500500+ { name = "html", text = "", fg_dark = "#e44d26", fg_light = "#ab3a1c" },
501501+ { name = "huff", text = "", fg_dark = "#4242c7", fg_light = "#4242c7" },
502502+ { name = "hurl", text = "", fg_dark = "#ff0288", fg_light = "#bf0266" },
503503+ { name = "hx", text = "", fg_dark = "#ea8220", fg_light = "#9c5715" },
504504+ { name = "hxx", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
505505+ { name = "ical", text = "", fg_dark = "#2b2e83", fg_light = "#2b2e83" },
506506+ { name = "icalendar", text = "", fg_dark = "#2b2e83", fg_light = "#2b2e83" },
507507+ { name = "ico", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
508508+ { name = "ics", text = "", fg_dark = "#2b2e83", fg_light = "#2b2e83" },
509509+ { name = "ifb", text = "", fg_dark = "#2b2e83", fg_light = "#2b2e83" },
510510+ { name = "ifc", text = "", fg_dark = "#839463", fg_light = "#576342" },
511511+ { name = "ige", text = "", fg_dark = "#839463", fg_light = "#576342" },
512512+ { name = "iges", text = "", fg_dark = "#839463", fg_light = "#576342" },
513513+ { name = "igs", text = "", fg_dark = "#839463", fg_light = "#576342" },
514514+ { name = "image", text = "", fg_dark = "#d0bec8", fg_light = "#453f43" },
515515+ { name = "img", text = "", fg_dark = "#d0bec8", fg_light = "#453f43" },
516516+ { name = "import", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
517517+ { name = "info", text = "", fg_dark = "#ffffcd", fg_light = "#333329" },
518518+ { name = "ini", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
519519+ { name = "ino", text = "", fg_dark = "#56b6c2", fg_light = "#397981" },
520520+ { name = "ipynb", text = "", fg_dark = "#51a0cf", fg_light = "#366b8a" },
521521+ { name = "iso", text = "", fg_dark = "#d0bec8", fg_light = "#453f43" },
522522+ { name = "ixx", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
523523+ { name = "java", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
524524+ { name = "jl", text = "", fg_dark = "#a270ba", fg_light = "#6c4b7c" },
525525+ { name = "jpeg", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
526526+ { name = "jpg", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
527527+ { name = "js", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
528528+ { name = "json", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
529529+ { name = "json5", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
530530+ { name = "jsonc", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
531531+ { name = "jsx", text = "", fg_dark = "#20c2e3", fg_light = "#158197" },
532532+ { name = "jwmrc", text = "", fg_dark = "#0078cd", fg_light = "#005a9a" },
533533+ { name = "jxl", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
534534+ { name = "kbx", text = "", fg_dark = "#737672", fg_light = "#565856" },
535535+ { name = "kdb", text = "", fg_dark = "#529b34", fg_light = "#3e7427" },
536536+ { name = "kdbx", text = "", fg_dark = "#529b34", fg_light = "#3e7427" },
537537+ { name = "kdenlive", text = "", fg_dark = "#83b8f2", fg_light = "#425c79" },
538538+ { name = "kdenlivetitle", text = "", fg_dark = "#83b8f2", fg_light = "#425c79" },
539539+ { name = "kicad_dru", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
540540+ { name = "kicad_mod", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
541541+ { name = "kicad_pcb", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
542542+ { name = "kicad_prl", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
543543+ { name = "kicad_pro", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
544544+ { name = "kicad_sch", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
545545+ { name = "kicad_sym", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
546546+ { name = "kicad_wks", text = "", fg_dark = "#ffffff", fg_light = "#333333" },
547547+ { name = "ko", text = "", fg_dark = "#dcddd6", fg_light = "#494a47" },
548548+ { name = "kpp", text = "", fg_dark = "#f245fb", fg_light = "#a12ea7" },
549549+ { name = "kra", text = "", fg_dark = "#f245fb", fg_light = "#a12ea7" },
550550+ { name = "krz", text = "", fg_dark = "#f245fb", fg_light = "#a12ea7" },
551551+ { name = "ksh", text = "", fg_dark = "#4d5a5e", fg_light = "#3a4446" },
552552+ { name = "kt", text = "", fg_dark = "#7f52ff", fg_light = "#5f3ebf" },
553553+ { name = "kts", text = "", fg_dark = "#7f52ff", fg_light = "#5f3ebf" },
554554+ { name = "lck", text = "", fg_dark = "#bbbbbb", fg_light = "#5e5e5e" },
555555+ { name = "leex", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
556556+ { name = "less", text = "", fg_dark = "#563d7c", fg_light = "#563d7c" },
557557+ { name = "lff", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
558558+ { name = "lhs", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
559559+ { name = "lib", text = "", fg_dark = "#4d2c0b", fg_light = "#4d2c0b" },
560560+ { name = "license", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
561561+ { name = "liquid", text = "", fg_dark = "#95bf47", fg_light = "#4a6024" },
562562+ { name = "lock", text = "", fg_dark = "#bbbbbb", fg_light = "#5e5e5e" },
563563+ { name = "log", text = "", fg_dark = "#dddddd", fg_light = "#4a4a4a" },
564564+ { name = "lrc", text = "", fg_dark = "#ffb713", fg_light = "#805c0a" },
565565+ { name = "lua", text = "", fg_dark = "#51a0cf", fg_light = "#366b8a" },
566566+ { name = "luac", text = "", fg_dark = "#51a0cf", fg_light = "#366b8a" },
567567+ { name = "luau", text = "", fg_dark = "#00a2ff", fg_light = "#007abf" },
568568+ { name = "m", text = "", fg_dark = "#599eff", fg_light = "#3b69aa" },
569569+ { name = "m3u", text = "", fg_dark = "#ed95ae", fg_light = "#764a57" },
570570+ { name = "m3u8", text = "", fg_dark = "#ed95ae", fg_light = "#764a57" },
571571+ { name = "m4a", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
572572+ { name = "m4v", text = "", fg_dark = "#fd971f", fg_light = "#7e4c10" },
573573+ { name = "magnet", text = "", fg_dark = "#a51b16", fg_light = "#a51b16" },
574574+ { name = "makefile", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
575575+ { name = "markdown", text = "", fg_dark = "#dddddd", fg_light = "#4a4a4a" },
576576+ { name = "material", text = "", fg_dark = "#b83998", fg_light = "#8a2b72" },
577577+ { name = "md", text = "", fg_dark = "#dddddd", fg_light = "#4a4a4a" },
578578+ { name = "md5", text = "", fg_dark = "#8c86af", fg_light = "#5d5975" },
579579+ { name = "mdx", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
580580+ { name = "mint", text = "", fg_dark = "#87c095", fg_light = "#44604a" },
581581+ { name = "mjs", text = "", fg_dark = "#f1e05a", fg_light = "#504b1e" },
582582+ { name = "mk", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
583583+ { name = "mkv", text = "", fg_dark = "#fd971f", fg_light = "#7e4c10" },
584584+ { name = "ml", text = "", fg_dark = "#e37933", fg_light = "#975122" },
585585+ { name = "mli", text = "", fg_dark = "#e37933", fg_light = "#975122" },
586586+ { name = "mm", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
587587+ { name = "mo", text = "∞", fg_dark = "#9772fb", fg_light = "#654ca7" },
588588+ { name = "mobi", text = "", fg_dark = "#eab16d", fg_light = "#755836" },
589589+ { name = "mov", text = "", fg_dark = "#fd971f", fg_light = "#7e4c10" },
590590+ { name = "mp3", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
591591+ { name = "mp4", text = "", fg_dark = "#fd971f", fg_light = "#7e4c10" },
592592+ { name = "mpp", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
593593+ { name = "msf", text = "", fg_dark = "#137be1", fg_light = "#0e5ca9" },
594594+ { name = "mts", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
595595+ { name = "mustache", text = "", fg_dark = "#e37933", fg_light = "#975122" },
596596+ { name = "nfo", text = "", fg_dark = "#ffffcd", fg_light = "#333329" },
597597+ { name = "nim", text = "", fg_dark = "#f3d400", fg_light = "#514700" },
598598+ { name = "nix", text = "", fg_dark = "#7ebae4", fg_light = "#3f5d72" },
599599+ { name = "nswag", text = "", fg_dark = "#85ea2d", fg_light = "#427516" },
600600+ { name = "nu", text = ">", fg_dark = "#3aa675", fg_light = "#276f4e" },
601601+ { name = "o", text = "", fg_dark = "#9f0500", fg_light = "#9f0500" },
602602+ { name = "obj", text = "", fg_dark = "#888888", fg_light = "#5b5b5b" },
603603+ { name = "ogg", text = "", fg_dark = "#0075aa", fg_light = "#005880" },
604604+ { name = "opus", text = "", fg_dark = "#0075aa", fg_light = "#005880" },
605605+ { name = "org", text = "", fg_dark = "#77aa99", fg_light = "#4f7166" },
606606+ { name = "otf", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
607607+ { name = "out", text = "", fg_dark = "#9f0500", fg_light = "#9f0500" },
608608+ { name = "part", text = "", fg_dark = "#44cda8", fg_light = "#226654" },
609609+ { name = "patch", text = "", fg_dark = "#41535b", fg_light = "#41535b" },
610610+ { name = "pck", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
611611+ { name = "pcm", text = "", fg_dark = "#0075aa", fg_light = "#005880" },
612612+ { name = "pdf", text = "", fg_dark = "#b30b00", fg_light = "#b30b00" },
613613+ { name = "php", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
614614+ { name = "pl", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
615615+ { name = "pls", text = "", fg_dark = "#ed95ae", fg_light = "#764a57" },
616616+ { name = "ply", text = "", fg_dark = "#888888", fg_light = "#5b5b5b" },
617617+ { name = "pm", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
618618+ { name = "png", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
619619+ { name = "po", text = "", fg_dark = "#2596be", fg_light = "#1c708e" },
620620+ { name = "pot", text = "", fg_dark = "#2596be", fg_light = "#1c708e" },
621621+ { name = "pp", text = "", fg_dark = "#ffa61a", fg_light = "#80530d" },
622622+ { name = "ppt", text = "", fg_dark = "#cb4a32", fg_light = "#983826" },
623623+ { name = "prisma", text = "", fg_dark = "#5a67d8", fg_light = "#444da2" },
624624+ { name = "pro", text = "", fg_dark = "#e4b854", fg_light = "#725c2a" },
625625+ { name = "ps1", text = "", fg_dark = "#4273ca", fg_light = "#325698" },
626626+ { name = "psb", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
627627+ { name = "psd", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
628628+ { name = "psd1", text = "", fg_dark = "#6975c4", fg_light = "#4f5893" },
629629+ { name = "psm1", text = "", fg_dark = "#6975c4", fg_light = "#4f5893" },
630630+ { name = "pub", text = "", fg_dark = "#e3c58e", fg_light = "#4c422f" },
631631+ { name = "pxd", text = "", fg_dark = "#5aa7e4", fg_light = "#3c6f98" },
632632+ { name = "pxi", text = "", fg_dark = "#5aa7e4", fg_light = "#3c6f98" },
633633+ { name = "py", text = "", fg_dark = "#ffbc03", fg_light = "#805e02" },
634634+ { name = "pyc", text = "", fg_dark = "#ffe291", fg_light = "#332d1d" },
635635+ { name = "pyd", text = "", fg_dark = "#ffe291", fg_light = "#332d1d" },
636636+ { name = "pyi", text = "", fg_dark = "#ffbc03", fg_light = "#805e02" },
637637+ { name = "pyo", text = "", fg_dark = "#ffe291", fg_light = "#332d1d" },
638638+ { name = "pyx", text = "", fg_dark = "#5aa7e4", fg_light = "#3c6f98" },
639639+ { name = "qm", text = "", fg_dark = "#2596be", fg_light = "#1c708e" },
640640+ { name = "qml", text = "", fg_dark = "#40cd52", fg_light = "#2b8937" },
641641+ { name = "qrc", text = "", fg_dark = "#40cd52", fg_light = "#2b8937" },
642642+ { name = "qss", text = "", fg_dark = "#40cd52", fg_light = "#2b8937" },
643643+ { name = "query", text = "", fg_dark = "#90a850", fg_light = "#607035" },
644644+ { name = "r", text = "", fg_dark = "#2266ba", fg_light = "#1a4c8c" },
645645+ { name = "rake", text = "", fg_dark = "#701516", fg_light = "#701516" },
646646+ { name = "rar", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
647647+ { name = "razor", text = "", fg_dark = "#512bd4", fg_light = "#512bd4" },
648648+ { name = "rb", text = "", fg_dark = "#701516", fg_light = "#701516" },
649649+ { name = "res", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
650650+ { name = "resi", text = "", fg_dark = "#f55385", fg_light = "#a33759" },
651651+ { name = "rlib", text = "", fg_dark = "#dea584", fg_light = "#6f5242" },
652652+ { name = "rmd", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
653653+ { name = "rproj", text = "", fg_dark = "#358a5b", fg_light = "#286844" },
654654+ { name = "rs", text = "", fg_dark = "#dea584", fg_light = "#6f5242" },
655655+ { name = "rss", text = "", fg_dark = "#fb9d3b", fg_light = "#7e4e1e" },
656656+ { name = "sass", text = "", fg_dark = "#f55385", fg_light = "#a33759" },
657657+ { name = "sbt", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
658658+ { name = "sc", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
659659+ { name = "scad", text = "", fg_dark = "#f9d72c", fg_light = "#53480f" },
660660+ { name = "scala", text = "", fg_dark = "#cc3e44", fg_light = "#992e33" },
661661+ { name = "scm", text = "", fg_dark = "#eeeeee", fg_light = "#303030" },
662662+ { name = "scss", text = "", fg_dark = "#f55385", fg_light = "#a33759" },
663663+ { name = "sh", text = "", fg_dark = "#4d5a5e", fg_light = "#3a4446" },
664664+ { name = "sha1", text = "", fg_dark = "#8c86af", fg_light = "#5d5975" },
665665+ { name = "sha224", text = "", fg_dark = "#8c86af", fg_light = "#5d5975" },
666666+ { name = "sha256", text = "", fg_dark = "#8c86af", fg_light = "#5d5975" },
667667+ { name = "sha384", text = "", fg_dark = "#8c86af", fg_light = "#5d5975" },
668668+ { name = "sha512", text = "", fg_dark = "#8c86af", fg_light = "#5d5975" },
669669+ { name = "sig", text = "λ", fg_dark = "#e37933", fg_light = "#975122" },
670670+ { name = "signature", text = "λ", fg_dark = "#e37933", fg_light = "#975122" },
671671+ { name = "skp", text = "", fg_dark = "#839463", fg_light = "#576342" },
672672+ { name = "sldasm", text = "", fg_dark = "#839463", fg_light = "#576342" },
673673+ { name = "sldprt", text = "", fg_dark = "#839463", fg_light = "#576342" },
674674+ { name = "slim", text = "", fg_dark = "#e34c26", fg_light = "#aa391c" },
675675+ { name = "sln", text = "", fg_dark = "#854cc7", fg_light = "#643995" },
676676+ { name = "slvs", text = "", fg_dark = "#839463", fg_light = "#576342" },
677677+ { name = "sml", text = "λ", fg_dark = "#e37933", fg_light = "#975122" },
678678+ { name = "so", text = "", fg_dark = "#dcddd6", fg_light = "#494a47" },
679679+ { name = "sol", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
680680+ { name = "spec.js", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
681681+ { name = "spec.jsx", text = "", fg_dark = "#20c2e3", fg_light = "#158197" },
682682+ { name = "spec.ts", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
683683+ { name = "spec.tsx", text = "", fg_dark = "#1354bf", fg_light = "#1354bf" },
684684+ { name = "sql", text = "", fg_dark = "#dad8d8", fg_light = "#494848" },
685685+ { name = "sqlite", text = "", fg_dark = "#dad8d8", fg_light = "#494848" },
686686+ { name = "sqlite3", text = "", fg_dark = "#dad8d8", fg_light = "#494848" },
687687+ { name = "srt", text = "", fg_dark = "#ffb713", fg_light = "#805c0a" },
688688+ { name = "ssa", text = "", fg_dark = "#ffb713", fg_light = "#805c0a" },
689689+ { name = "ste", text = "", fg_dark = "#839463", fg_light = "#576342" },
690690+ { name = "step", text = "", fg_dark = "#839463", fg_light = "#576342" },
691691+ { name = "stl", text = "", fg_dark = "#888888", fg_light = "#5b5b5b" },
692692+ { name = "stp", text = "", fg_dark = "#839463", fg_light = "#576342" },
693693+ { name = "strings", text = "", fg_dark = "#2596be", fg_light = "#1c708e" },
694694+ { name = "styl", text = "", fg_dark = "#8dc149", fg_light = "#466024" },
695695+ { name = "sub", text = "", fg_dark = "#ffb713", fg_light = "#805c0a" },
696696+ { name = "sublime", text = "", fg_dark = "#e37933", fg_light = "#975122" },
697697+ { name = "suo", text = "", fg_dark = "#854cc7", fg_light = "#643995" },
698698+ { name = "sv", text = "", fg_dark = "#019833", fg_light = "#017226" },
699699+ { name = "svelte", text = "", fg_dark = "#ff3e00", fg_light = "#bf2e00" },
700700+ { name = "svg", text = "", fg_dark = "#ffb13b", fg_light = "#80581e" },
701701+ { name = "svh", text = "", fg_dark = "#019833", fg_light = "#017226" },
702702+ { name = "swift", text = "", fg_dark = "#e37933", fg_light = "#975122" },
703703+ { name = "t", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
704704+ { name = "tbc", text = "", fg_dark = "#1e5cb3", fg_light = "#1e5cb3" },
705705+ { name = "tcl", text = "", fg_dark = "#1e5cb3", fg_light = "#1e5cb3" },
706706+ { name = "templ", text = "", fg_dark = "#dbbd30", fg_light = "#6e5e18" },
707707+ { name = "terminal", text = "", fg_dark = "#31b53e", fg_light = "#217929" },
708708+ { name = "test.js", text = "", fg_dark = "#cbcb41", fg_light = "#666620" },
709709+ { name = "test.jsx", text = "", fg_dark = "#20c2e3", fg_light = "#158197" },
710710+ { name = "test.ts", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
711711+ { name = "test.tsx", text = "", fg_dark = "#1354bf", fg_light = "#1354bf" },
712712+ { name = "tex", text = "", fg_dark = "#3d6117", fg_light = "#3d6117" },
713713+ { name = "tf", text = "", fg_dark = "#5f43e9", fg_light = "#4732af" },
714714+ { name = "tfvars", text = "", fg_dark = "#5f43e9", fg_light = "#4732af" },
715715+ { name = "tgz", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
716716+ { name = "tmux", text = "", fg_dark = "#14ba19", fg_light = "#0f8c13" },
717717+ { name = "toml", text = "", fg_dark = "#9c4221", fg_light = "#753219" },
718718+ { name = "torrent", text = "", fg_dark = "#44cda8", fg_light = "#226654" },
719719+ { name = "tres", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
720720+ { name = "ts", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
721721+ { name = "tscn", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
722722+ { name = "tsconfig", text = "", fg_dark = "#ff8700", fg_light = "#aa5a00" },
723723+ { name = "tsx", text = "", fg_dark = "#1354bf", fg_light = "#1354bf" },
724724+ { name = "ttf", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
725725+ { name = "twig", text = "", fg_dark = "#8dc149", fg_light = "#466024" },
726726+ { name = "txt", text = "", fg_dark = "#89e051", fg_light = "#447028" },
727727+ { name = "txz", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
728728+ { name = "typoscript", text = "", fg_dark = "#ff8700", fg_light = "#aa5a00" },
729729+ { name = "ui", text = "", fg_dark = "#0c306e", fg_light = "#0c306e" },
730730+ { name = "v", text = "", fg_dark = "#019833", fg_light = "#017226" },
731731+ { name = "vala", text = "", fg_dark = "#7239b3", fg_light = "#562b86" },
732732+ { name = "vh", text = "", fg_dark = "#019833", fg_light = "#017226" },
733733+ { name = "vhd", text = "", fg_dark = "#019833", fg_light = "#017226" },
734734+ { name = "vhdl", text = "", fg_dark = "#019833", fg_light = "#017226" },
735735+ { name = "vim", text = "", fg_dark = "#019833", fg_light = "#017226" },
736736+ { name = "vsh", text = "", fg_dark = "#5d87bf", fg_light = "#3e5a7f" },
737737+ { name = "vsix", text = "", fg_dark = "#854cc7", fg_light = "#643995" },
738738+ { name = "vue", text = "", fg_dark = "#8dc149", fg_light = "#466024" },
739739+ { name = "wasm", text = "", fg_dark = "#5c4cdb", fg_light = "#4539a4" },
740740+ { name = "wav", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
741741+ { name = "webm", text = "", fg_dark = "#fd971f", fg_light = "#7e4c10" },
742742+ { name = "webmanifest", text = "", fg_dark = "#f1e05a", fg_light = "#504b1e" },
743743+ { name = "webp", text = "", fg_dark = "#a074c4", fg_light = "#6b4d83" },
744744+ { name = "webpack", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
745745+ { name = "wma", text = "", fg_dark = "#00afff", fg_light = "#0075aa" },
746746+ { name = "woff", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
747747+ { name = "woff2", text = "", fg_dark = "#ececec", fg_light = "#2f2f2f" },
748748+ { name = "wrl", text = "", fg_dark = "#888888", fg_light = "#5b5b5b" },
749749+ { name = "wrz", text = "", fg_dark = "#888888", fg_light = "#5b5b5b" },
750750+ { name = "x", text = "", fg_dark = "#599eff", fg_light = "#3b69aa" },
751751+ { name = "xaml", text = "", fg_dark = "#512bd4", fg_light = "#512bd4" },
752752+ { name = "xcf", text = "", fg_dark = "#635b46", fg_light = "#4a4434" },
753753+ { name = "xcplayground", text = "", fg_dark = "#e37933", fg_light = "#975122" },
754754+ { name = "xcstrings", text = "", fg_dark = "#2596be", fg_light = "#1c708e" },
755755+ { name = "xls", text = "", fg_dark = "#207245", fg_light = "#207245" },
756756+ { name = "xlsx", text = "", fg_dark = "#207245", fg_light = "#207245" },
757757+ { name = "xm", text = "", fg_dark = "#519aba", fg_light = "#36677c" },
758758+ { name = "xml", text = "", fg_dark = "#e37933", fg_light = "#975122" },
759759+ { name = "xpi", text = "", fg_dark = "#ff1b01", fg_light = "#bf1401" },
760760+ { name = "xul", text = "", fg_dark = "#e37933", fg_light = "#975122" },
761761+ { name = "xz", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
762762+ { name = "yaml", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
763763+ { name = "yml", text = "", fg_dark = "#6d8086", fg_light = "#526064" },
764764+ { name = "zig", text = "", fg_dark = "#f69a1b", fg_light = "#7b4d0e" },
765765+ { name = "zip", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
766766+ { name = "zsh", text = "", fg_dark = "#89e051", fg_light = "#447028" },
767767+ { name = "zst", text = "", fg_dark = "#eca517", fg_light = "#76520c" },
768768+]
769769+conds = [
770770+ # Special files
771771+ { if = "orphan", text = "" },
772772+ { if = "link", text = "" },
773773+ { if = "block", text = "" },
774774+ { if = "char", text = "" },
775775+ { if = "fifo", text = "" },
776776+ { if = "sock", text = "" },
777777+ { if = "sticky", text = "" },
778778+ { if = "dummy", text = "" },
779779+780780+ # Fallback
781781+ { if = "dir", text = "" },
782782+ { if = "exec", text = "" },
783783+ { if = "!dir", text = "" },
784784+]
785785+786786+# : }}}