๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

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

add `full-border.yazi`

kacaii a778cf79 e31ba32c

+105 -772
+1
.config/yazi/init.lua
··· 1 + require("full-border"):setup()
+7
.config/yazi/package.toml
··· 1 + [[plugin.deps]] 2 + use = "yazi-rs/plugins:full-border" 3 + rev = "e07bf41" 4 + hash = "3996fc74044bc44144b323686f887e1" 5 + 6 + [flavor] 7 + deps = []
+21
.config/yazi/plugins/full-border.yazi/LICENSE
··· 1 + MIT License 2 + 3 + Copyright (c) 2023 yazi-rs 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy 6 + of this software and associated documentation files (the "Software"), to deal 7 + in the Software without restriction, including without limitation the rights 8 + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 + copies of the Software, and to permit persons to whom the Software is 10 + furnished to do so, subject to the following conditions: 11 + 12 + The above copyright notice and this permission notice shall be included in all 13 + copies or substantial portions of the Software. 14 + 15 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 + SOFTWARE.
+32
.config/yazi/plugins/full-border.yazi/README.md
··· 1 + # full-border.yazi 2 + 3 + Add a full border to Yazi to make it look fancier. 4 + 5 + ![full-border](https://github.com/yazi-rs/plugins/assets/17523360/ef81b560-2465-4d36-abf2-5d21dcb7b987) 6 + 7 + ## Installation 8 + 9 + ```sh 10 + ya pkg add yazi-rs/plugins:full-border 11 + ``` 12 + 13 + ## Usage 14 + 15 + Add this to your `init.lua` to enable the plugin: 16 + 17 + ```lua 18 + require("full-border"):setup() 19 + ``` 20 + 21 + Or you can customize the border type: 22 + 23 + ```lua 24 + require("full-border"):setup { 25 + -- Available values: ui.Border.PLAIN, ui.Border.ROUNDED 26 + type = ui.Border.ROUNDED, 27 + } 28 + ``` 29 + 30 + ## License 31 + 32 + This plugin is MIT-licensed. For more information check the [LICENSE](LICENSE) file.
+43
.config/yazi/plugins/full-border.yazi/main.lua
··· 1 + --- @since 25.2.26 2 + 3 + local function setup(_, opts) 4 + local type = opts and opts.type or ui.Border.ROUNDED 5 + local old_build = Tab.build 6 + 7 + Tab.build = function(self, ...) 8 + local bar = function(c, x, y) 9 + if x <= 0 or x == self._area.w - 1 or th.mgr.border_symbol ~= "โ”‚" then 10 + return ui.Bar(ui.Edge.TOP) 11 + end 12 + 13 + return ui.Bar(ui.Edge.TOP) 14 + :area( 15 + ui.Rect { x = x, y = math.max(0, y), w = ya.clamp(0, self._area.w - x, 1), h = math.min(1, self._area.h) } 16 + ) 17 + :symbol(c) 18 + end 19 + 20 + local c = self._chunks 21 + self._chunks = { 22 + c[1]:pad(ui.Pad.y(1)), 23 + c[2]:pad(ui.Pad(1, c[3].w > 0 and 0 or 1, 1, c[1].w > 0 and 0 or 1)), 24 + c[3]:pad(ui.Pad.y(1)), 25 + } 26 + 27 + local style = th.mgr.border_style 28 + self._base = ya.list_merge(self._base or {}, { 29 + ui.Border(ui.Edge.ALL):area(self._area):type(type):style(style), 30 + ui.Bar(ui.Edge.RIGHT):area(self._chunks[1]):style(style), 31 + ui.Bar(ui.Edge.LEFT):area(self._chunks[3]):style(style), 32 + 33 + bar("โ”ฌ", c[1].right - 1, c[1].y), 34 + bar("โ”ด", c[1].right - 1, c[1].bottom - 1), 35 + bar("โ”ฌ", c[2].right, c[2].y), 36 + bar("โ”ด", c[2].right, c[2].bottom - 1), 37 + }) 38 + 39 + old_build(self, ...) 40 + end 41 + end 42 + 43 + return { setup = setup }
-771
.config/yazi/theme.toml
··· 1 - [app] 2 - overall = { bg = "#1e1e2e" } 3 - 4 - [mgr] 5 - cwd = { fg = "#94e2d5" } 6 - 7 - find_keyword = { fg = "#f9e2af", italic = true } 8 - find_position = { fg = "#f5c2e7", bg = "reset", italic = true } 9 - 10 - marker_copied = { fg = "#a6e3a1", bg = "#a6e3a1" } 11 - marker_cut = { fg = "#f38ba8", bg = "#f38ba8" } 12 - marker_marked = { fg = "#94e2d5", bg = "#94e2d5" } 13 - marker_selected = { fg = "#b4befe", bg = "#b4befe" } 14 - 15 - count_copied = { fg = "#1e1e2e", bg = "#a6e3a1" } 16 - count_cut = { fg = "#1e1e2e", bg = "#f38ba8" } 17 - count_selected = { fg = "#1e1e2e", bg = "#b4befe" } 18 - 19 - border_symbol = "โ”‚" 20 - border_style = { fg = "#7f849c" } 21 - 22 - syntect_theme = "~/.config/bat/themes/catppuccin_mocha.tmTheme" 23 - 24 - [tabs] 25 - active = { fg = "#1e1e2e", bg = "#cdd6f4", bold = true } 26 - inactive = { fg = "#cdd6f4", bg = "#45475a" } 27 - 28 - [mode] 29 - normal_main = { fg = "#1e1e2e", bg = "#b4befe", bold = true } 30 - normal_alt = { fg = "#b4befe", bg = "#313244" } 31 - 32 - select_main = { fg = "#1e1e2e", bg = "#a6e3a1", bold = true } 33 - select_alt = { fg = "#a6e3a1", bg = "#313244" } 34 - 35 - unset_main = { fg = "#1e1e2e", bg = "#f2cdcd", bold = true } 36 - unset_alt = { fg = "#f2cdcd", bg = "#313244" } 37 - 38 - [indicator] 39 - parent = { fg = "#1e1e2e", bg = "#cdd6f4" } 40 - current = { fg = "#1e1e2e", bg = "#b4befe" } 41 - preview = { fg = "#1e1e2e", bg = "#cdd6f4" } 42 - 43 - [status] 44 - sep_left = { open = "โ–ˆ", close = "โ–ˆ" } 45 - sep_right = { open = "โ–ˆ", close = "โ–ˆ" } 46 - 47 - progress_label = { fg = "#ffffff", bold = true } 48 - progress_normal = { fg = "#a6e3a1", bg = "#45475a" } 49 - progress_error = { fg = "#f9e2af", bg = "#f38ba8" } 50 - 51 - perm_type = { fg = "#89b4fa" } 52 - perm_read = { fg = "#f9e2af" } 53 - perm_write = { fg = "#f38ba8" } 54 - perm_exec = { fg = "#a6e3a1" } 55 - perm_sep = { fg = "#7f849c" } 56 - 57 - [input] 58 - border = { fg = "#b4befe" } 59 - title = {} 60 - value = {} 61 - selected = { reversed = true } 62 - 63 - [pick] 64 - border = { fg = "#b4befe" } 65 - active = { fg = "#f5c2e7" } 66 - inactive = {} 67 - 68 - [confirm] 69 - border = { fg = "#b4befe" } 70 - title = { fg = "#b4befe" } 71 - body = {} 72 - list = {} 73 - btn_yes = { reversed = true } 74 - btn_no = {} 75 - 76 - [cmp] 77 - border = { fg = "#b4befe" } 78 - 79 - [tasks] 80 - border = { fg = "#b4befe" } 81 - title = {} 82 - hovered = { fg = "#f5c2e7", bold = true } 83 - 84 - [which] 85 - mask = { bg = "#313244" } 86 - cand = { fg = "#94e2d5" } 87 - rest = { fg = "#9399b2" } 88 - desc = { fg = "#f5c2e7" } 89 - separator = " ๎ชœ " 90 - separator_style = { fg = "#585b70" } 91 - 92 - [help] 93 - on = { fg = "#94e2d5" } 94 - run = { fg = "#f5c2e7" } 95 - desc = { fg = "#9399b2" } 96 - hovered = { bg = "#585b70", bold = true } 97 - footer = { fg = "#cdd6f4", bg = "#45475a" } 98 - 99 - [notify] 100 - title_info = { fg = "#94e2d5" } 101 - title_warn = { fg = "#f9e2af" } 102 - title_error = { fg = "#f38ba8" } 103 - 104 - [filetype] 105 - rules = [ 106 - # Media 107 - { mime = "image/*", fg = "#94e2d5" }, 108 - { mime = "{audio,video}/*", fg = "#f9e2af" }, 109 - 110 - # Archives 111 - { mime = "application/*zip", fg = "#f5c2e7" }, 112 - { mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#f5c2e7" }, 113 - 114 - # Documents 115 - { mime = "application/{pdf,doc,rtf}", fg = "#a6e3a1" }, 116 - 117 - # Virtual file system 118 - { mime = "vfs/{absent,stale}", fg = "#45475a" }, 119 - 120 - # Special file 121 - { url = "*", is = "orphan", bg = "#f38ba8" }, 122 - { url = "*", is = "exec", fg = "#a6e3a1" }, 123 - 124 - # Dummy file 125 - { url = "*", is = "dummy", bg = "#f38ba8" }, 126 - { url = "*/", is = "dummy", bg = "#f38ba8" }, 127 - 128 - # Fallback 129 - { url = "*/", fg = "#b4befe" }, 130 - ] 131 - 132 - [spot] 133 - border = { fg = "#b4befe" } 134 - title = { fg = "#b4befe" } 135 - tbl_cell = { fg = "#b4befe", reversed = true } 136 - tbl_col = { bold = true } 137 - 138 - [icon] 139 - files = [ 140 - { name = "kritadisplayrc", text = "๏Œฝ", fg = "#cba6f7" }, 141 - { name = ".gtkrc-2.0", text = "๏ข", fg = "#f5e0dc" }, 142 - { name = "bspwmrc", text = "๏•", fg = "#313244" }, 143 - { name = "webpack", text = "๓ฐœซ", fg = "#74c7ec" }, 144 - { name = "tsconfig.json", text = "๎š", fg = "#74c7ec" }, 145 - { name = ".vimrc", text = "๎˜ซ", fg = "#a6e3a1" }, 146 - { name = "gemfile$", text = "๎ž‘", fg = "#313244" }, 147 - { name = "xmobarrc", text = "๏ž", fg = "#f38ba8" }, 148 - { name = "avif", text = "๎˜", fg = "#7f849c" }, 149 - { name = "fp-info-cache", text = "๏Œ", fg = "#f5e0dc" }, 150 - { name = ".zshrc", text = "๎˜•", fg = "#a6e3a1" }, 151 - { name = "robots.txt", text = "๓ฐšฉ", fg = "#6c7086" }, 152 - { name = "dockerfile", text = "๓ฐกจ", fg = "#89b4fa" }, 153 - { name = ".git-blame-ignore-revs", text = "๎œ‚", fg = "#fab387" }, 154 - { name = ".nvmrc", text = "๎œ˜", fg = "#a6e3a1" }, 155 - { name = "hyprpaper.conf", text = "๏™", fg = "#74c7ec" }, 156 - { name = ".prettierignore", text = "๎šด", fg = "#89b4fa" }, 157 - { name = "rakefile", text = "๎ž‘", fg = "#313244" }, 158 - { name = "code_of_conduct", text = "๏’ฎ", fg = "#f38ba8" }, 159 - { name = "cmakelists.txt", text = "๎ž”", fg = "#cdd6f4" }, 160 - { name = ".env", text = "๏‘ข", fg = "#f9e2af" }, 161 - { name = "copying.lesser", text = "๎˜Š", fg = "#f9e2af" }, 162 - { name = "readme", text = "๓ฐ‚บ", fg = "#f5e0dc" }, 163 - { name = "settings.gradle", text = "๎™ ", fg = "#585b70" }, 164 - { name = "gruntfile.coffee", text = "๎˜‘", fg = "#fab387" }, 165 - { name = ".eslintignore", text = "๎™•", fg = "#585b70" }, 166 - { name = "kalgebrarc", text = "๏ณ", fg = "#89b4fa" }, 167 - { name = "kdenliverc", text = "๏Œผ", fg = "#89b4fa" }, 168 - { name = ".prettierrc.cjs", text = "๎šด", fg = "#89b4fa" }, 169 - { name = "cantorrc", text = "๏ณ", fg = "#89b4fa" }, 170 - { name = "rmd", text = "๎˜‰", fg = "#74c7ec" }, 171 - { name = "vagrantfile$", text = "๏Šธ", fg = "#6c7086" }, 172 - { name = ".Xauthority", text = "๏ฉ", fg = "#fab387" }, 173 - { name = "prettier.config.ts", text = "๎šด", fg = "#89b4fa" }, 174 - { name = "node_modules", text = "๎œ˜", fg = "#f38ba8" }, 175 - { name = ".prettierrc.toml", text = "๎šด", fg = "#89b4fa" }, 176 - { name = "build.zig.zon", text = "๎šฉ", fg = "#fab387" }, 177 - { name = ".ds_store", text = "๎˜•", fg = "#45475a" }, 178 - { name = "PKGBUILD", text = "๏Œƒ", fg = "#89b4fa" }, 179 - { name = ".prettierrc", text = "๎šด", fg = "#89b4fa" }, 180 - { name = ".bash_profile", text = "๎˜•", fg = "#a6e3a1" }, 181 - { name = ".npmignore", text = "๎œž", fg = "#f38ba8" }, 182 - { name = ".mailmap", text = "๓ฐŠข", fg = "#fab387" }, 183 - { name = ".codespellrc", text = "๓ฐ“†", fg = "#a6e3a1" }, 184 - { name = "svelte.config.js", text = "๎š—", fg = "#fab387" }, 185 - { name = "eslint.config.ts", text = "๎™•", fg = "#585b70" }, 186 - { name = "config", text = "๎˜•", fg = "#7f849c" }, 187 - { name = ".gitlab-ci.yml", text = "๏Š–", fg = "#fab387" }, 188 - { name = ".gitconfig", text = "๎˜•", fg = "#fab387" }, 189 - { name = "_gvimrc", text = "๎˜ซ", fg = "#a6e3a1" }, 190 - { name = ".xinitrc", text = "๏ฉ", fg = "#fab387" }, 191 - { name = "checkhealth", text = "๓ฐ“™", fg = "#89b4fa" }, 192 - { name = "sxhkdrc", text = "๏•", fg = "#313244" }, 193 - { name = ".bashrc", text = "๎˜•", fg = "#a6e3a1" }, 194 - { name = "tailwind.config.mjs", text = "๓ฑฟ", fg = "#74c7ec" }, 195 - { name = "ext_typoscript_setup.txt", text = "๎ฒ", fg = "#fab387" }, 196 - { name = "commitlint.config.ts", text = "๓ฐœ˜", fg = "#94e2d5" }, 197 - { name = "py.typed", text = "๎˜†", fg = "#f9e2af" }, 198 - { name = ".nanorc", text = "๎ ธ", fg = "#313244" }, 199 - { name = "commit_editmsg", text = "๎œ‚", fg = "#fab387" }, 200 - { name = ".luaurc", text = "๎˜•", fg = "#89b4fa" }, 201 - { name = "fp-lib-table", text = "๏Œ", fg = "#f5e0dc" }, 202 - { name = ".editorconfig", text = "๎™’", fg = "#f5e0dc" }, 203 - { name = "justfile", text = "๏‚ญ", fg = "#7f849c" }, 204 - { name = "kdeglobals", text = "๏ณ", fg = "#89b4fa" }, 205 - { name = "license.md", text = "๎˜Š", fg = "#f9e2af" }, 206 - { name = ".clang-format", text = "๎˜•", fg = "#7f849c" }, 207 - { name = "docker-compose.yaml", text = "๓ฐกจ", fg = "#89b4fa" }, 208 - { name = "copying", text = "๎˜Š", fg = "#f9e2af" }, 209 - { name = "go.mod", text = "๎˜ง", fg = "#74c7ec" }, 210 - { name = "lxqt.conf", text = "๏ค", fg = "#89b4fa" }, 211 - { name = "brewfile", text = "๎ž‘", fg = "#313244" }, 212 - { name = "gulpfile.coffee", text = "๎˜", fg = "#f38ba8" }, 213 - { name = ".dockerignore", text = "๓ฐกจ", fg = "#89b4fa" }, 214 - { name = ".settings.json", text = "๎œŒ", fg = "#6c7086" }, 215 - { name = "tailwind.config.js", text = "๓ฑฟ", fg = "#74c7ec" }, 216 - { name = ".clang-tidy", text = "๎˜•", fg = "#7f849c" }, 217 - { name = ".gvimrc", text = "๎˜ซ", fg = "#a6e3a1" }, 218 - { name = "nuxt.config.cjs", text = "๓ฑ„†", fg = "#a6e3a1" }, 219 - { name = "xsettingsd.conf", text = "๏ฉ", fg = "#fab387" }, 220 - { name = "nuxt.config.js", text = "๓ฑ„†", fg = "#a6e3a1" }, 221 - { name = "eslint.config.cjs", text = "๎™•", fg = "#585b70" }, 222 - { name = "sym-lib-table", text = "๏Œ", fg = "#f5e0dc" }, 223 - { name = ".condarc", text = "๎œ•", fg = "#a6e3a1" }, 224 - { name = "xmonad.hs", text = "๏ž", fg = "#f38ba8" }, 225 - { name = "tmux.conf", text = "๎ฏˆ", fg = "#a6e3a1" }, 226 - { name = "xmobarrc.hs", text = "๏ž", fg = "#f38ba8" }, 227 - { name = ".prettierrc.yaml", text = "๎šด", fg = "#89b4fa" }, 228 - { name = ".pre-commit-config.yaml", text = "๓ฐ›ข", fg = "#fab387" }, 229 - { name = "i3blocks.conf", text = "๏š", fg = "#f5e0dc" }, 230 - { name = "xorg.conf", text = "๏ฉ", fg = "#fab387" }, 231 - { name = ".zshenv", text = "๎˜•", fg = "#a6e3a1" }, 232 - { name = "vlcrc", text = "๓ฐ•ผ", fg = "#fab387" }, 233 - { name = "license", text = "๎˜Š", fg = "#f9e2af" }, 234 - { name = "unlicense", text = "๎˜Š", fg = "#f9e2af" }, 235 - { name = "tmux.conf.local", text = "๎ฏˆ", fg = "#a6e3a1" }, 236 - { name = ".SRCINFO", text = "๓ฐฃ‡", fg = "#89b4fa" }, 237 - { name = "tailwind.config.ts", text = "๓ฑฟ", fg = "#74c7ec" }, 238 - { name = "security.md", text = "๓ฐ’ƒ", fg = "#bac2de" }, 239 - { name = "security", text = "๓ฐ’ƒ", fg = "#bac2de" }, 240 - { name = ".eslintrc", text = "๎™•", fg = "#585b70" }, 241 - { name = "gradle.properties", text = "๎™ ", fg = "#585b70" }, 242 - { name = "code_of_conduct.md", text = "๏’ฎ", fg = "#f38ba8" }, 243 - { name = "PrusaSlicerGcodeViewer.ini", text = "๏‘", fg = "#fab387" }, 244 - { name = "PrusaSlicer.ini", text = "๏‘", fg = "#fab387" }, 245 - { name = "procfile", text = "๎˜‡", fg = "#7f849c" }, 246 - { name = "mpv.conf", text = "๏ฎ", fg = "#1e1e2e" }, 247 - { name = ".prettierrc.json5", text = "๎šด", fg = "#89b4fa" }, 248 - { name = "i3status.conf", text = "๏š", fg = "#f5e0dc" }, 249 - { name = "prettier.config.mjs", text = "๎šด", fg = "#89b4fa" }, 250 - { name = ".pylintrc", text = "๎˜•", fg = "#7f849c" }, 251 - { name = "prettier.config.cjs", text = "๎šด", fg = "#89b4fa" }, 252 - { name = ".luacheckrc", text = "๎˜•", fg = "#89b4fa" }, 253 - { name = "containerfile", text = "๓ฐกจ", fg = "#89b4fa" }, 254 - { name = "eslint.config.mjs", text = "๎™•", fg = "#585b70" }, 255 - { name = "gruntfile.js", text = "๎˜‘", fg = "#fab387" }, 256 - { name = "bun.lockb", text = "๎ฏ", fg = "#f5e0dc" }, 257 - { name = ".gitattributes", text = "๎œ‚", fg = "#fab387" }, 258 - { name = "gruntfile.ts", text = "๎˜‘", fg = "#fab387" }, 259 - { name = "pom.xml", text = "๎™ด", fg = "#313244" }, 260 - { name = "favicon.ico", text = "๎˜ฃ", fg = "#f9e2af" }, 261 - { name = "package-lock.json", text = "๎œž", fg = "#313244" }, 262 - { name = "build", text = "๎˜บ", fg = "#a6e3a1" }, 263 - { name = "package.json", text = "๎œž", fg = "#f38ba8" }, 264 - { name = "nuxt.config.ts", text = "๓ฑ„†", fg = "#a6e3a1" }, 265 - { name = "nuxt.config.mjs", text = "๓ฑ„†", fg = "#a6e3a1" }, 266 - { name = "mix.lock", text = "๎˜ญ", fg = "#7f849c" }, 267 - { name = "makefile", text = "๎น", fg = "#7f849c" }, 268 - { name = "gulpfile.js", text = "๎˜", fg = "#f38ba8" }, 269 - { name = "lxde-rc.xml", text = "๏ฃ", fg = "#9399b2" }, 270 - { name = "kritarc", text = "๏Œฝ", fg = "#cba6f7" }, 271 - { name = "gtkrc", text = "๏ข", fg = "#f5e0dc" }, 272 - { name = "ionic.config.json", text = "๎žฉ", fg = "#89b4fa" }, 273 - { name = ".prettierrc.mjs", text = "๎šด", fg = "#89b4fa" }, 274 - { name = ".prettierrc.yml", text = "๎šด", fg = "#89b4fa" }, 275 - { name = ".npmrc", text = "๎œž", fg = "#f38ba8" }, 276 - { name = "weston.ini", text = "๏ง", fg = "#f9e2af" }, 277 - { name = "gulpfile.babel.js", text = "๎˜", fg = "#f38ba8" }, 278 - { name = "i18n.config.ts", text = "๓ฐ—Š", fg = "#7f849c" }, 279 - { name = "commitlint.config.js", text = "๓ฐœ˜", fg = "#94e2d5" }, 280 - { name = ".gitmodules", text = "๎œ‚", fg = "#fab387" }, 281 - { name = "gradle-wrapper.properties", text = "๎™ ", fg = "#585b70" }, 282 - { name = "hypridle.conf", text = "๏™", fg = "#74c7ec" }, 283 - { name = "vercel.json", text = "โ–ฒ", fg = "#f5e0dc" }, 284 - { name = "hyprlock.conf", text = "๏™", fg = "#74c7ec" }, 285 - { name = "go.sum", text = "๎˜ง", fg = "#74c7ec" }, 286 - { name = "kdenlive-layoutsrc", text = "๏Œผ", fg = "#89b4fa" }, 287 - { name = "gruntfile.babel.js", text = "๎˜‘", fg = "#fab387" }, 288 - { name = "compose.yml", text = "๓ฐกจ", fg = "#89b4fa" }, 289 - { name = "i18n.config.js", text = "๓ฐ—Š", fg = "#7f849c" }, 290 - { name = "readme.md", text = "๓ฐ‚บ", fg = "#f5e0dc" }, 291 - { name = "gradlew", text = "๎™ ", fg = "#585b70" }, 292 - { name = "go.work", text = "๎˜ง", fg = "#74c7ec" }, 293 - { name = "gulpfile.ts", text = "๎˜", fg = "#f38ba8" }, 294 - { name = "gnumakefile", text = "๎น", fg = "#7f849c" }, 295 - { name = "FreeCAD.conf", text = "๏Œถ", fg = "#f38ba8" }, 296 - { name = "compose.yaml", text = "๓ฐกจ", fg = "#89b4fa" }, 297 - { name = "eslint.config.js", text = "๎™•", fg = "#585b70" }, 298 - { name = "hyprland.conf", text = "๏™", fg = "#74c7ec" }, 299 - { name = "docker-compose.yml", text = "๓ฐกจ", fg = "#89b4fa" }, 300 - { name = "groovy", text = "๎ต", fg = "#585b70" }, 301 - { name = "QtProject.conf", text = "๏ต", fg = "#a6e3a1" }, 302 - { name = "platformio.ini", text = "๎š‚", fg = "#fab387" }, 303 - { name = "build.gradle", text = "๎™ ", fg = "#585b70" }, 304 - { name = ".nuxtrc", text = "๓ฑ„†", fg = "#a6e3a1" }, 305 - { name = "_vimrc", text = "๎˜ซ", fg = "#a6e3a1" }, 306 - { name = ".zprofile", text = "๎˜•", fg = "#a6e3a1" }, 307 - { name = ".xsession", text = "๏ฉ", fg = "#fab387" }, 308 - { name = "prettier.config.js", text = "๎šด", fg = "#89b4fa" }, 309 - { name = ".babelrc", text = "๎˜น", fg = "#f9e2af" }, 310 - { name = "workspace", text = "๎˜บ", fg = "#a6e3a1" }, 311 - { name = ".prettierrc.json", text = "๎šด", fg = "#89b4fa" }, 312 - { name = ".prettierrc.js", text = "๎šด", fg = "#89b4fa" }, 313 - { name = ".Xresources", text = "๏ฉ", fg = "#fab387" }, 314 - { name = ".gitignore", text = "๎œ‚", fg = "#fab387" }, 315 - { name = ".justfile", text = "๏‚ญ", fg = "#7f849c" }, 316 - ] 317 - exts = [ 318 - { name = "otf", text = "๏€ฑ", fg = "#f5e0dc" }, 319 - { name = "import", text = "๏ƒ†", fg = "#f5e0dc" }, 320 - { name = "krz", text = "๏Œฝ", fg = "#cba6f7" }, 321 - { name = "adb", text = "๎šต", fg = "#94e2d5" }, 322 - { name = "ttf", text = "๏€ฑ", fg = "#f5e0dc" }, 323 - { name = "webpack", text = "๓ฐœซ", fg = "#74c7ec" }, 324 - { name = "dart", text = "๎ž˜", fg = "#585b70" }, 325 - { name = "vsh", text = "๎šฌ", fg = "#7f849c" }, 326 - { name = "doc", text = "๓ฐˆฌ", fg = "#585b70" }, 327 - { name = "zsh", text = "๎ž•", fg = "#a6e3a1" }, 328 - { name = "ex", text = "๎˜ญ", fg = "#7f849c" }, 329 - { name = "hx", text = "๎™ฆ", fg = "#fab387" }, 330 - { name = "fodt", text = "๏ผ", fg = "#74c7ec" }, 331 - { name = "mojo", text = "๏ญ", fg = "#fab387" }, 332 - { name = "templ", text = "๎ซ„", fg = "#f9e2af" }, 333 - { name = "nix", text = "๏Œ“", fg = "#74c7ec" }, 334 - { name = "cshtml", text = "๓ฑฆ—", fg = "#585b70" }, 335 - { name = "fish", text = "๎ž•", fg = "#585b70" }, 336 - { name = "ply", text = "๓ฐ†ง", fg = "#7f849c" }, 337 - { name = "sldprt", text = "๓ฐปซ", fg = "#a6e3a1" }, 338 - { name = "gemspec", text = "๎ž‘", fg = "#313244" }, 339 - { name = "mjs", text = "๎˜Œ", fg = "#f9e2af" }, 340 - { name = "csh", text = "๎ž•", fg = "#585b70" }, 341 - { name = "cmake", text = "๎ž”", fg = "#cdd6f4" }, 342 - { name = "fodp", text = "๏บ", fg = "#fab387" }, 343 - { name = "vi", text = "๎ ž", fg = "#f9e2af" }, 344 - { name = "msf", text = "๏ฐ", fg = "#89b4fa" }, 345 - { name = "blp", text = "๓ฐบพ", fg = "#89b4fa" }, 346 - { name = "less", text = "๎˜”", fg = "#45475a" }, 347 - { name = "sh", text = "๎ž•", fg = "#585b70" }, 348 - { name = "odg", text = "๏น", fg = "#f9e2af" }, 349 - { name = "mint", text = "๓ฐŒช", fg = "#a6e3a1" }, 350 - { name = "dll", text = "๎ฎœ", fg = "#11111b" }, 351 - { name = "odf", text = "๏ป", fg = "#f38ba8" }, 352 - { name = "sqlite3", text = "๎œ†", fg = "#f5e0dc" }, 353 - { name = "Dockerfile", text = "๓ฐกจ", fg = "#89b4fa" }, 354 - { name = "ksh", text = "๎ž•", fg = "#585b70" }, 355 - { name = "rmd", text = "๎˜‰", fg = "#74c7ec" }, 356 - { name = "wv", text = "๏€", fg = "#74c7ec" }, 357 - { name = "xml", text = "๓ฐ—€", fg = "#fab387" }, 358 - { name = "markdown", text = "๎˜‰", fg = "#cdd6f4" }, 359 - { name = "qml", text = "๏ต", fg = "#a6e3a1" }, 360 - { name = "3gp", text = "๎šŸ", fg = "#fab387" }, 361 - { name = "pxi", text = "๎˜†", fg = "#89b4fa" }, 362 - { name = "flac", text = "๏€", fg = "#6c7086" }, 363 - { name = "gpr", text = "๎šต", fg = "#cba6f7" }, 364 - { name = "huff", text = "๓ฐก˜", fg = "#585b70" }, 365 - { name = "json", text = "๎˜‹", fg = "#f9e2af" }, 366 - { name = "gv", text = "๓ฑ‰", fg = "#585b70" }, 367 - { name = "bmp", text = "๎˜", fg = "#7f849c" }, 368 - { name = "lock", text = "๎™ฒ", fg = "#bac2de" }, 369 - { name = "sha384", text = "๓ฐ•ฅ", fg = "#7f849c" }, 370 - { name = "cobol", text = "โš™", fg = "#585b70" }, 371 - { name = "cob", text = "โš™", fg = "#585b70" }, 372 - { name = "java", text = "๎œธ", fg = "#f38ba8" }, 373 - { name = "cjs", text = "๎˜Œ", fg = "#f9e2af" }, 374 - { name = "qm", text = "๏†ซ", fg = "#74c7ec" }, 375 - { name = "ebuild", text = "๏Œ", fg = "#45475a" }, 376 - { name = "mustache", text = "๎˜", fg = "#fab387" }, 377 - { name = "terminal", text = "๏’‰", fg = "#a6e3a1" }, 378 - { name = "ejs", text = "๎˜Ž", fg = "#f9e2af" }, 379 - { name = "brep", text = "๓ฐปซ", fg = "#a6e3a1" }, 380 - { name = "rar", text = "๏", fg = "#fab387" }, 381 - { name = "gradle", text = "๎™ ", fg = "#585b70" }, 382 - { name = "gnumakefile", text = "๎น", fg = "#7f849c" }, 383 - { name = "applescript", text = "๏…น", fg = "#7f849c" }, 384 - { name = "elm", text = "๎˜ฌ", fg = "#74c7ec" }, 385 - { name = "ebook", text = "๎Š‹", fg = "#fab387" }, 386 - { name = "kra", text = "๏Œฝ", fg = "#cba6f7" }, 387 - { name = "tf", text = "๎šš", fg = "#585b70" }, 388 - { name = "xls", text = "๓ฐˆ›", fg = "#585b70" }, 389 - { name = "fnl", text = "๎šฏ", fg = "#f9e2af" }, 390 - { name = "kdbx", text = "๏ˆพ", fg = "#a6e3a1" }, 391 - { name = "kicad_pcb", text = "๏Œ", fg = "#f5e0dc" }, 392 - { name = "cfg", text = "๎˜•", fg = "#7f849c" }, 393 - { name = "ape", text = "๏€", fg = "#74c7ec" }, 394 - { name = "org", text = "๎˜ณ", fg = "#94e2d5" }, 395 - { name = "yml", text = "๎˜•", fg = "#7f849c" }, 396 - { name = "swift", text = "๎•", fg = "#fab387" }, 397 - { name = "eln", text = "๎˜ฒ", fg = "#7f849c" }, 398 - { name = "sol", text = "๎™–", fg = "#74c7ec" }, 399 - { name = "awk", text = "๎ž•", fg = "#585b70" }, 400 - { name = "7z", text = "๏", fg = "#fab387" }, 401 - { name = "apl", text = "โ", fg = "#fab387" }, 402 - { name = "epp", text = "๎˜ฑ", fg = "#fab387" }, 403 - { name = "app", text = "๎ซจ", fg = "#45475a" }, 404 - { name = "dot", text = "๓ฑ‰", fg = "#585b70" }, 405 - { name = "kpp", text = "๏Œฝ", fg = "#cba6f7" }, 406 - { name = "eot", text = "๏€ฑ", fg = "#f5e0dc" }, 407 - { name = "hpp", text = "๏ƒฝ", fg = "#7f849c" }, 408 - { name = "spec.tsx", text = "๏’™", fg = "#585b70" }, 409 - { name = "hurl", text = "๏ƒฌ", fg = "#f38ba8" }, 410 - { name = "cxxm", text = "๎˜", fg = "#74c7ec" }, 411 - { name = "c", text = "๎˜ž", fg = "#89b4fa" }, 412 - { name = "fcmacro", text = "๏Œถ", fg = "#f38ba8" }, 413 - { name = "sass", text = "๎˜ƒ", fg = "#f38ba8" }, 414 - { name = "yaml", text = "๎˜•", fg = "#7f849c" }, 415 - { name = "xz", text = "๏", fg = "#fab387" }, 416 - { name = "material", text = "๓ฐ”‰", fg = "#f38ba8" }, 417 - { name = "json5", text = "๎˜‹", fg = "#f9e2af" }, 418 - { name = "signature", text = "ฮป", fg = "#fab387" }, 419 - { name = "3mf", text = "๓ฐ†ง", fg = "#7f849c" }, 420 - { name = "jpg", text = "๎˜", fg = "#7f849c" }, 421 - { name = "xpi", text = "๎ž†", fg = "#fab387" }, 422 - { name = "fcmat", text = "๏Œถ", fg = "#f38ba8" }, 423 - { name = "pot", text = "๏†ซ", fg = "#74c7ec" }, 424 - { name = "bin", text = "๎ซจ", fg = "#45475a" }, 425 - { name = "xlsx", text = "๓ฐˆ›", fg = "#585b70" }, 426 - { name = "aac", text = "๏€", fg = "#74c7ec" }, 427 - { name = "kicad_sym", text = "๏Œ", fg = "#f5e0dc" }, 428 - { name = "xcstrings", text = "๏†ซ", fg = "#74c7ec" }, 429 - { name = "lff", text = "๏€ฑ", fg = "#f5e0dc" }, 430 - { name = "xcf", text = "๏Œธ", fg = "#585b70" }, 431 - { name = "azcli", text = "๎ฏจ", fg = "#6c7086" }, 432 - { name = "license", text = "๎˜Š", fg = "#f9e2af" }, 433 - { name = "jsonc", text = "๎˜‹", fg = "#f9e2af" }, 434 - { name = "xaml", text = "๓ฐ™ณ", fg = "#585b70" }, 435 - { name = "md5", text = "๓ฐ•ฅ", fg = "#7f849c" }, 436 - { name = "xm", text = "๎š‘", fg = "#74c7ec" }, 437 - { name = "sln", text = "๎œŒ", fg = "#6c7086" }, 438 - { name = "jl", text = "๎˜ค", fg = "#7f849c" }, 439 - { name = "ml", text = "๎™บ", fg = "#fab387" }, 440 - { name = "http", text = "๏‡˜", fg = "#89b4fa" }, 441 - { name = "x", text = "๎š‘", fg = "#89b4fa" }, 442 - { name = "wvc", text = "๏€", fg = "#74c7ec" }, 443 - { name = "wrz", text = "๓ฐ†ง", fg = "#7f849c" }, 444 - { name = "csproj", text = "๓ฐชฎ", fg = "#585b70" }, 445 - { name = "wrl", text = "๓ฐ†ง", fg = "#7f849c" }, 446 - { name = "wma", text = "๏€", fg = "#74c7ec" }, 447 - { name = "woff2", text = "๏€ฑ", fg = "#f5e0dc" }, 448 - { name = "woff", text = "๏€ฑ", fg = "#f5e0dc" }, 449 - { name = "tscn", text = "๎™Ÿ", fg = "#7f849c" }, 450 - { name = "webmanifest", text = "๎˜‹", fg = "#f9e2af" }, 451 - { name = "webm", text = "๎šŸ", fg = "#fab387" }, 452 - { name = "fcbak", text = "๏Œถ", fg = "#f38ba8" }, 453 - { name = "log", text = "๓ฐŒฑ", fg = "#cdd6f4" }, 454 - { name = "wav", text = "๏€", fg = "#74c7ec" }, 455 - { name = "wasm", text = "๎šก", fg = "#585b70" }, 456 - { name = "styl", text = "๎˜€", fg = "#a6e3a1" }, 457 - { name = "gif", text = "๎˜", fg = "#7f849c" }, 458 - { name = "resi", text = "๎šˆ", fg = "#f38ba8" }, 459 - { name = "aiff", text = "๏€", fg = "#74c7ec" }, 460 - { name = "sha256", text = "๓ฐ•ฅ", fg = "#7f849c" }, 461 - { name = "igs", text = "๓ฐปซ", fg = "#a6e3a1" }, 462 - { name = "vsix", text = "๎œŒ", fg = "#6c7086" }, 463 - { name = "vim", text = "๎˜ซ", fg = "#a6e3a1" }, 464 - { name = "diff", text = "๎œจ", fg = "#45475a" }, 465 - { name = "drl", text = "๎ŠŒ", fg = "#eba0ac" }, 466 - { name = "erl", text = "๎žฑ", fg = "#f38ba8" }, 467 - { name = "vhdl", text = "๓ฐ›", fg = "#a6e3a1" }, 468 - { name = "๐Ÿ”ฅ", text = "๏ญ", fg = "#fab387" }, 469 - { name = "hrl", text = "๎žฑ", fg = "#f38ba8" }, 470 - { name = "fsi", text = "๎žง", fg = "#74c7ec" }, 471 - { name = "mm", text = "๎˜", fg = "#74c7ec" }, 472 - { name = "bz", text = "๏", fg = "#fab387" }, 473 - { name = "vh", text = "๓ฐ›", fg = "#a6e3a1" }, 474 - { name = "kdb", text = "๏ˆพ", fg = "#a6e3a1" }, 475 - { name = "gz", text = "๏", fg = "#fab387" }, 476 - { name = "cpp", text = "๎˜", fg = "#74c7ec" }, 477 - { name = "ui", text = "๏‹", fg = "#6c7086" }, 478 - { name = "txt", text = "๓ฐˆ™", fg = "#a6e3a1" }, 479 - { name = "spec.ts", text = "๏’™", fg = "#74c7ec" }, 480 - { name = "ccm", text = "๎˜", fg = "#f38ba8" }, 481 - { name = "typoscript", text = "๎ฒ", fg = "#fab387" }, 482 - { name = "typ", text = "๏ฟ", fg = "#89dceb" }, 483 - { name = "txz", text = "๏", fg = "#fab387" }, 484 - { name = "test.ts", text = "๏’™", fg = "#74c7ec" }, 485 - { name = "tsx", text = "๎žบ", fg = "#585b70" }, 486 - { name = "mk", text = "๎น", fg = "#7f849c" }, 487 - { name = "webp", text = "๎˜", fg = "#7f849c" }, 488 - { name = "opus", text = "๏€", fg = "#6c7086" }, 489 - { name = "bicep", text = "๎˜ป", fg = "#74c7ec" }, 490 - { name = "ts", text = "๎˜จ", fg = "#74c7ec" }, 491 - { name = "tres", text = "๎™Ÿ", fg = "#7f849c" }, 492 - { name = "torrent", text = "๏€™", fg = "#94e2d5" }, 493 - { name = "cxx", text = "๎˜", fg = "#74c7ec" }, 494 - { name = "iso", text = "๎‰ฑ", fg = "#f2cdcd" }, 495 - { name = "ixx", text = "๎˜", fg = "#74c7ec" }, 496 - { name = "hxx", text = "๏ƒฝ", fg = "#7f849c" }, 497 - { name = "gql", text = "๏ˆŽ", fg = "#f38ba8" }, 498 - { name = "tmux", text = "๎ฏˆ", fg = "#a6e3a1" }, 499 - { name = "ini", text = "๎˜•", fg = "#7f849c" }, 500 - { name = "m3u8", text = "๓ฐฒน", fg = "#f38ba8" }, 501 - { name = "image", text = "๎‰ฑ", fg = "#f2cdcd" }, 502 - { name = "tfvars", text = "๏…›", fg = "#585b70" }, 503 - { name = "tex", text = "๎š›", fg = "#45475a" }, 504 - { name = "cbl", text = "โš™", fg = "#585b70" }, 505 - { name = "flc", text = "๏€ฑ", fg = "#f5e0dc" }, 506 - { name = "elc", text = "๎˜ฒ", fg = "#7f849c" }, 507 - { name = "test.tsx", text = "๏’™", fg = "#585b70" }, 508 - { name = "twig", text = "๎˜œ", fg = "#a6e3a1" }, 509 - { name = "sql", text = "๎œ†", fg = "#f5e0dc" }, 510 - { name = "test.jsx", text = "๏’™", fg = "#74c7ec" }, 511 - { name = "htm", text = "๎˜Ž", fg = "#fab387" }, 512 - { name = "gcode", text = "๓ฐซ", fg = "#6c7086" }, 513 - { name = "test.js", text = "๏’™", fg = "#f9e2af" }, 514 - { name = "ino", text = "๏‹", fg = "#74c7ec" }, 515 - { name = "tcl", text = "๓ฐ›“", fg = "#585b70" }, 516 - { name = "cljs", text = "๎ช", fg = "#74c7ec" }, 517 - { name = "tsconfig", text = "๎ฒ", fg = "#fab387" }, 518 - { name = "img", text = "๎‰ฑ", fg = "#f2cdcd" }, 519 - { name = "t", text = "๎ฉ", fg = "#74c7ec" }, 520 - { name = "fcstd1", text = "๏Œถ", fg = "#f38ba8" }, 521 - { name = "out", text = "๎ซจ", fg = "#45475a" }, 522 - { name = "jsx", text = "๎˜ฅ", fg = "#74c7ec" }, 523 - { name = "bash", text = "๎ž•", fg = "#a6e3a1" }, 524 - { name = "edn", text = "๎ช", fg = "#74c7ec" }, 525 - { name = "rss", text = "๎˜™", fg = "#fab387" }, 526 - { name = "flf", text = "๏€ฑ", fg = "#f5e0dc" }, 527 - { name = "cache", text = "๏’›", fg = "#f5e0dc" }, 528 - { name = "sbt", text = "๎œท", fg = "#f38ba8" }, 529 - { name = "cppm", text = "๎˜", fg = "#74c7ec" }, 530 - { name = "svelte", text = "๎š—", fg = "#fab387" }, 531 - { name = "mo", text = "โˆž", fg = "#7f849c" }, 532 - { name = "sv", text = "๓ฐ›", fg = "#a6e3a1" }, 533 - { name = "ko", text = "๏…ผ", fg = "#f5e0dc" }, 534 - { name = "suo", text = "๎œŒ", fg = "#6c7086" }, 535 - { name = "sldasm", text = "๓ฐปซ", fg = "#a6e3a1" }, 536 - { name = "icalendar", text = "๏ณ", fg = "#313244" }, 537 - { name = "go", text = "๎˜ง", fg = "#74c7ec" }, 538 - { name = "sublime", text = "๎žช", fg = "#fab387" }, 539 - { name = "stl", text = "๓ฐ†ง", fg = "#7f849c" }, 540 - { name = "mobi", text = "๎Š‹", fg = "#fab387" }, 541 - { name = "graphql", text = "๏ˆŽ", fg = "#f38ba8" }, 542 - { name = "m3u", text = "๓ฐฒน", fg = "#f38ba8" }, 543 - { name = "cpy", text = "โš™", fg = "#585b70" }, 544 - { name = "kdenlive", text = "๏Œผ", fg = "#89b4fa" }, 545 - { name = "pyo", text = "๎˜†", fg = "#f9e2af" }, 546 - { name = "po", text = "๏†ซ", fg = "#74c7ec" }, 547 - { name = "scala", text = "๎œท", fg = "#f38ba8" }, 548 - { name = "exs", text = "๎˜ญ", fg = "#7f849c" }, 549 - { name = "odp", text = "๏บ", fg = "#fab387" }, 550 - { name = "dump", text = "๎œ†", fg = "#f5e0dc" }, 551 - { name = "stp", text = "๓ฐปซ", fg = "#a6e3a1" }, 552 - { name = "step", text = "๓ฐปซ", fg = "#a6e3a1" }, 553 - { name = "ste", text = "๓ฐปซ", fg = "#a6e3a1" }, 554 - { name = "aif", text = "๏€", fg = "#74c7ec" }, 555 - { name = "strings", text = "๏†ซ", fg = "#74c7ec" }, 556 - { name = "cp", text = "๎˜", fg = "#74c7ec" }, 557 - { name = "fsscript", text = "๎žง", fg = "#74c7ec" }, 558 - { name = "mli", text = "๎™บ", fg = "#fab387" }, 559 - { name = "bak", text = "๓ฐฏ", fg = "#7f849c" }, 560 - { name = "ssa", text = "๓ฐจ–", fg = "#f9e2af" }, 561 - { name = "toml", text = "๎šฒ", fg = "#585b70" }, 562 - { name = "makefile", text = "๎น", fg = "#7f849c" }, 563 - { name = "php", text = "๎˜ˆ", fg = "#7f849c" }, 564 - { name = "zst", text = "๏", fg = "#fab387" }, 565 - { name = "spec.jsx", text = "๏’™", fg = "#74c7ec" }, 566 - { name = "kbx", text = "๓ฐฏ„", fg = "#6c7086" }, 567 - { name = "fbx", text = "๓ฐ†ง", fg = "#7f849c" }, 568 - { name = "blend", text = "๓ฐ‚ซ", fg = "#fab387" }, 569 - { name = "ifc", text = "๓ฐปซ", fg = "#a6e3a1" }, 570 - { name = "spec.js", text = "๏’™", fg = "#f9e2af" }, 571 - { name = "so", text = "๎ฎœ", fg = "#f5e0dc" }, 572 - { name = "desktop", text = "๏„ˆ", fg = "#45475a" }, 573 - { name = "sml", text = "ฮป", fg = "#fab387" }, 574 - { name = "slvs", text = "๓ฐปซ", fg = "#a6e3a1" }, 575 - { name = "pp", text = "๎˜ฑ", fg = "#fab387" }, 576 - { name = "ps1", text = "๓ฐจŠ", fg = "#6c7086" }, 577 - { name = "dropbox", text = "๎œ‡", fg = "#6c7086" }, 578 - { name = "kicad_mod", text = "๏Œ", fg = "#f5e0dc" }, 579 - { name = "bat", text = "๎˜•", fg = "#a6e3a1" }, 580 - { name = "slim", text = "๎˜Ž", fg = "#fab387" }, 581 - { name = "skp", text = "๓ฐปซ", fg = "#a6e3a1" }, 582 - { name = "css", text = "๎‰", fg = "#89b4fa" }, 583 - { name = "xul", text = "๎…", fg = "#fab387" }, 584 - { name = "ige", text = "๓ฐปซ", fg = "#a6e3a1" }, 585 - { name = "glb", text = "๏†ฒ", fg = "#fab387" }, 586 - { name = "ppt", text = "๓ฐˆง", fg = "#f38ba8" }, 587 - { name = "sha512", text = "๓ฐ•ฅ", fg = "#7f849c" }, 588 - { name = "ics", text = "๏ณ", fg = "#313244" }, 589 - { name = "mdx", text = "๏’Š", fg = "#74c7ec" }, 590 - { name = "sha1", text = "๓ฐ•ฅ", fg = "#7f849c" }, 591 - { name = "f3d", text = "๓ฐปซ", fg = "#a6e3a1" }, 592 - { name = "ass", text = "๓ฐจ–", fg = "#f9e2af" }, 593 - { name = "godot", text = "๎™Ÿ", fg = "#7f849c" }, 594 - { name = "ifb", text = "๏ณ", fg = "#313244" }, 595 - { name = "cson", text = "๎˜‹", fg = "#f9e2af" }, 596 - { name = "lib", text = "๎ฎœ", fg = "#11111b" }, 597 - { name = "luac", text = "๎˜ ", fg = "#74c7ec" }, 598 - { name = "heex", text = "๎˜ญ", fg = "#7f849c" }, 599 - { name = "scm", text = "๓ฐ˜ง", fg = "#f5e0dc" }, 600 - { name = "psd1", text = "๓ฐจŠ", fg = "#7f849c" }, 601 - { name = "sc", text = "๎œท", fg = "#f38ba8" }, 602 - { name = "scad", text = "๏Ž", fg = "#f9e2af" }, 603 - { name = "kts", text = "๎˜ด", fg = "#6c7086" }, 604 - { name = "svh", text = "๓ฐ›", fg = "#a6e3a1" }, 605 - { name = "mts", text = "๎˜จ", fg = "#74c7ec" }, 606 - { name = "nfo", text = "๏„ฉ", fg = "#f9e2af" }, 607 - { name = "pck", text = "๏’‡", fg = "#7f849c" }, 608 - { name = "rproj", text = "๓ฐ—†", fg = "#a6e3a1" }, 609 - { name = "rlib", text = "๎žจ", fg = "#fab387" }, 610 - { name = "cljd", text = "๎ช", fg = "#74c7ec" }, 611 - { name = "ods", text = "๏ธ", fg = "#a6e3a1" }, 612 - { name = "res", text = "๎šˆ", fg = "#f38ba8" }, 613 - { name = "apk", text = "๎œŽ", fg = "#a6e3a1" }, 614 - { name = "haml", text = "๎˜Ž", fg = "#f5e0dc" }, 615 - { name = "d.ts", text = "๎˜จ", fg = "#fab387" }, 616 - { name = "razor", text = "๓ฑฆ˜", fg = "#585b70" }, 617 - { name = "rake", text = "๎ž‘", fg = "#313244" }, 618 - { name = "patch", text = "๎œจ", fg = "#45475a" }, 619 - { name = "cuh", text = "๎™‹", fg = "#7f849c" }, 620 - { name = "d", text = "๎žฏ", fg = "#f38ba8" }, 621 - { name = "query", text = "๎ˆœ", fg = "#a6e3a1" }, 622 - { name = "psb", text = "๎žธ", fg = "#74c7ec" }, 623 - { name = "nu", text = ">", fg = "#a6e3a1" }, 624 - { name = "mov", text = "๎šŸ", fg = "#fab387" }, 625 - { name = "lrc", text = "๓ฐจ–", fg = "#f9e2af" }, 626 - { name = "pyx", text = "๎˜†", fg = "#89b4fa" }, 627 - { name = "pyw", text = "๎˜†", fg = "#89b4fa" }, 628 - { name = "cu", text = "๎™‹", fg = "#a6e3a1" }, 629 - { name = "bazel", text = "๎˜บ", fg = "#a6e3a1" }, 630 - { name = "obj", text = "๓ฐ†ง", fg = "#7f849c" }, 631 - { name = "pyi", text = "๎˜†", fg = "#f9e2af" }, 632 - { name = "pyd", text = "๎˜†", fg = "#f9e2af" }, 633 - { name = "exe", text = "๎ซจ", fg = "#45475a" }, 634 - { name = "pyc", text = "๎˜†", fg = "#f9e2af" }, 635 - { name = "fctb", text = "๏Œถ", fg = "#f38ba8" }, 636 - { name = "part", text = "๏€™", fg = "#94e2d5" }, 637 - { name = "blade.php", text = "๏‹ท", fg = "#f38ba8" }, 638 - { name = "git", text = "๎œ‚", fg = "#fab387" }, 639 - { name = "psd", text = "๎žธ", fg = "#74c7ec" }, 640 - { name = "qss", text = "๏ต", fg = "#a6e3a1" }, 641 - { name = "csv", text = "๎™Š", fg = "#a6e3a1" }, 642 - { name = "psm1", text = "๓ฐจŠ", fg = "#7f849c" }, 643 - { name = "dconf", text = "๏ก", fg = "#f5e0dc" }, 644 - { name = "config.ru", text = "๎ž‘", fg = "#313244" }, 645 - { name = "prisma", text = "๎š„", fg = "#6c7086" }, 646 - { name = "conf", text = "๎˜•", fg = "#7f849c" }, 647 - { name = "clj", text = "๎จ", fg = "#a6e3a1" }, 648 - { name = "o", text = "๎ซจ", fg = "#45475a" }, 649 - { name = "mp4", text = "๎šŸ", fg = "#fab387" }, 650 - { name = "cc", text = "๎˜", fg = "#f38ba8" }, 651 - { name = "kicad_prl", text = "๏Œ", fg = "#f5e0dc" }, 652 - { name = "bz3", text = "๏", fg = "#fab387" }, 653 - { name = "asc", text = "๓ฐฆ", fg = "#6c7086" }, 654 - { name = "png", text = "๎˜", fg = "#7f849c" }, 655 - { name = "android", text = "๎œŽ", fg = "#a6e3a1" }, 656 - { name = "pm", text = "๎ฉ", fg = "#74c7ec" }, 657 - { name = "h", text = "๏ƒฝ", fg = "#7f849c" }, 658 - { name = "pls", text = "๓ฐฒน", fg = "#f38ba8" }, 659 - { name = "ipynb", text = "๎ ", fg = "#fab387" }, 660 - { name = "pl", text = "๎ฉ", fg = "#74c7ec" }, 661 - { name = "ads", text = "๎šต", fg = "#f5e0dc" }, 662 - { name = "sqlite", text = "๎œ†", fg = "#f5e0dc" }, 663 - { name = "pdf", text = "๎ซซ", fg = "#585b70" }, 664 - { name = "pcm", text = "๏€", fg = "#6c7086" }, 665 - { name = "ico", text = "๎˜", fg = "#f9e2af" }, 666 - { name = "a", text = "๎ฎœ", fg = "#f5e0dc" }, 667 - { name = "R", text = "๓ฐŸ”", fg = "#6c7086" }, 668 - { name = "ogg", text = "๏€", fg = "#6c7086" }, 669 - { name = "pxd", text = "๎˜†", fg = "#89b4fa" }, 670 - { name = "kdenlivetitle", text = "๏Œผ", fg = "#89b4fa" }, 671 - { name = "jxl", text = "๎˜", fg = "#7f849c" }, 672 - { name = "nswag", text = "๎˜‹", fg = "#a6e3a1" }, 673 - { name = "nim", text = "๎™ท", fg = "#f9e2af" }, 674 - { name = "bqn", text = "โމ", fg = "#6c7086" }, 675 - { name = "cts", text = "๎˜จ", fg = "#74c7ec" }, 676 - { name = "fcparam", text = "๏Œถ", fg = "#f38ba8" }, 677 - { name = "rs", text = "๎š‹", fg = "#fab387" }, 678 - { name = "mpp", text = "๎˜", fg = "#74c7ec" }, 679 - { name = "fdmdownload", text = "๏€™", fg = "#94e2d5" }, 680 - { name = "pptx", text = "๓ฐˆง", fg = "#f38ba8" }, 681 - { name = "jpeg", text = "๎˜", fg = "#7f849c" }, 682 - { name = "bib", text = "๓ฑ‰Ÿ", fg = "#f9e2af" }, 683 - { name = "vhd", text = "๓ฐ›", fg = "#a6e3a1" }, 684 - { name = "m", text = "๎˜ž", fg = "#89b4fa" }, 685 - { name = "js", text = "๎˜Œ", fg = "#f9e2af" }, 686 - { name = "eex", text = "๎˜ญ", fg = "#7f849c" }, 687 - { name = "tbc", text = "๓ฐ›“", fg = "#585b70" }, 688 - { name = "astro", text = "๎šณ", fg = "#f38ba8" }, 689 - { name = "sha224", text = "๓ฐ•ฅ", fg = "#7f849c" }, 690 - { name = "xcplayground", text = "๎•", fg = "#fab387" }, 691 - { name = "el", text = "๎˜ฒ", fg = "#7f849c" }, 692 - { name = "m4v", text = "๎šŸ", fg = "#fab387" }, 693 - { name = "m4a", text = "๏€", fg = "#74c7ec" }, 694 - { name = "cs", text = "๓ฐŒ›", fg = "#585b70" }, 695 - { name = "hs", text = "๎˜Ÿ", fg = "#7f849c" }, 696 - { name = "tgz", text = "๏", fg = "#fab387" }, 697 - { name = "fs", text = "๎žง", fg = "#74c7ec" }, 698 - { name = "luau", text = "๎˜ ", fg = "#89b4fa" }, 699 - { name = "dxf", text = "๓ฐปซ", fg = "#a6e3a1" }, 700 - { name = "download", text = "๏€™", fg = "#94e2d5" }, 701 - { name = "cast", text = "๎šŸ", fg = "#fab387" }, 702 - { name = "qrc", text = "๏ต", fg = "#a6e3a1" }, 703 - { name = "lua", text = "๎˜ ", fg = "#74c7ec" }, 704 - { name = "lhs", text = "๎˜Ÿ", fg = "#7f849c" }, 705 - { name = "md", text = "๏’Š", fg = "#cdd6f4" }, 706 - { name = "leex", text = "๎˜ญ", fg = "#7f849c" }, 707 - { name = "ai", text = "๎žด", fg = "#f9e2af" }, 708 - { name = "lck", text = "๎™ฒ", fg = "#bac2de" }, 709 - { name = "kt", text = "๎˜ด", fg = "#6c7086" }, 710 - { name = "bicepparam", text = "๎˜ป", fg = "#7f849c" }, 711 - { name = "hex", text = "๎™ง", fg = "#6c7086" }, 712 - { name = "zig", text = "๎šฉ", fg = "#fab387" }, 713 - { name = "bzl", text = "๎˜บ", fg = "#a6e3a1" }, 714 - { name = "cljc", text = "๎จ", fg = "#a6e3a1" }, 715 - { name = "kicad_dru", text = "๏Œ", fg = "#f5e0dc" }, 716 - { name = "fctl", text = "๏Œถ", fg = "#f38ba8" }, 717 - { name = "f#", text = "๎žง", fg = "#74c7ec" }, 718 - { name = "odt", text = "๏ผ", fg = "#74c7ec" }, 719 - { name = "conda", text = "๎œ•", fg = "#a6e3a1" }, 720 - { name = "vala", text = "๎ฃ‘", fg = "#585b70" }, 721 - { name = "erb", text = "๎˜Ž", fg = "#313244" }, 722 - { name = "mp3", text = "๏€", fg = "#74c7ec" }, 723 - { name = "bz2", text = "๏", fg = "#fab387" }, 724 - { name = "coffee", text = "๎˜›", fg = "#f9e2af" }, 725 - { name = "cr", text = "๎˜ฏ", fg = "#f5e0dc" }, 726 - { name = "f90", text = "๓ฑˆš", fg = "#585b70" }, 727 - { name = "jwmrc", text = "๏›", fg = "#6c7086" }, 728 - { name = "c++", text = "๎˜", fg = "#f38ba8" }, 729 - { name = "fcscript", text = "๏Œถ", fg = "#f38ba8" }, 730 - { name = "fods", text = "๏ธ", fg = "#a6e3a1" }, 731 - { name = "cue", text = "๓ฐฒน", fg = "#f38ba8" }, 732 - { name = "srt", text = "๓ฐจ–", fg = "#f9e2af" }, 733 - { name = "info", text = "๏„ฉ", fg = "#f9e2af" }, 734 - { name = "hh", text = "๏ƒฝ", fg = "#7f849c" }, 735 - { name = "sig", text = "ฮป", fg = "#fab387" }, 736 - { name = "html", text = "๎œถ", fg = "#fab387" }, 737 - { name = "iges", text = "๓ฐปซ", fg = "#a6e3a1" }, 738 - { name = "kicad_wks", text = "๏Œ", fg = "#f5e0dc" }, 739 - { name = "hbs", text = "๎˜", fg = "#fab387" }, 740 - { name = "fcstd", text = "๏Œถ", fg = "#f38ba8" }, 741 - { name = "gresource", text = "๏ข", fg = "#f5e0dc" }, 742 - { name = "sub", text = "๓ฐจ–", fg = "#f9e2af" }, 743 - { name = "ical", text = "๏ณ", fg = "#313244" }, 744 - { name = "crdownload", text = "๏€™", fg = "#94e2d5" }, 745 - { name = "pub", text = "๓ฐท–", fg = "#f9e2af" }, 746 - { name = "vue", text = "๎š ", fg = "#a6e3a1" }, 747 - { name = "gd", text = "๎™Ÿ", fg = "#7f849c" }, 748 - { name = "fsx", text = "๎žง", fg = "#74c7ec" }, 749 - { name = "mkv", text = "๎šŸ", fg = "#fab387" }, 750 - { name = "py", text = "๎˜†", fg = "#f9e2af" }, 751 - { name = "kicad_sch", text = "๏Œ", fg = "#f5e0dc" }, 752 - { name = "epub", text = "๎Š‹", fg = "#fab387" }, 753 - { name = "env", text = "๏‘ข", fg = "#f9e2af" }, 754 - { name = "magnet", text = "๏ถ", fg = "#45475a" }, 755 - { name = "elf", text = "๎ซจ", fg = "#45475a" }, 756 - { name = "fodg", text = "๏น", fg = "#f9e2af" }, 757 - { name = "svg", text = "๓ฐœก", fg = "#fab387" }, 758 - { name = "dwg", text = "๓ฐปซ", fg = "#a6e3a1" }, 759 - { name = "docx", text = "๓ฐˆฌ", fg = "#585b70" }, 760 - { name = "pro", text = "๎žก", fg = "#f9e2af" }, 761 - { name = "db", text = "๎œ†", fg = "#f5e0dc" }, 762 - { name = "rb", text = "๎ž‘", fg = "#313244" }, 763 - { name = "r", text = "๓ฐŸ”", fg = "#6c7086" }, 764 - { name = "scss", text = "๎˜ƒ", fg = "#f38ba8" }, 765 - { name = "cow", text = "๓ฐ†š", fg = "#fab387" }, 766 - { name = "gleam", text = "๏€…", fg = "#f5c2e7" }, 767 - { name = "v", text = "๓ฐ›", fg = "#a6e3a1" }, 768 - { name = "kicad_pro", text = "๏Œ", fg = "#f5e0dc" }, 769 - { name = "liquid", text = "๎™ฐ", fg = "#a6e3a1" }, 770 - { name = "zip", text = "๏", fg = "#fab387" }, 771 - ]
+1 -1
.config/yazi/yazi.toml
··· 1 1 [mgr] 2 2 show_hidden = true 3 - show_symlink = false 3 + show_symlink = true