mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
chezmoi: awesome, fish, screen, wezterm, yazi
This commit is contained in:
parent
2cbf244d7b
commit
295f94ddb9
27 changed files with 613 additions and 5 deletions
|
|
@ -1,15 +0,0 @@
|
|||
# vim: ft=screen
|
||||
|
||||
bind h focus left
|
||||
bind n focus down
|
||||
bind e focus up
|
||||
bind i focus right
|
||||
|
||||
bind H resize -h -5
|
||||
bind N resize -v +5
|
||||
bind E resize -v -5
|
||||
bind I resize -h +5
|
||||
|
||||
# Window navigation (prev/next)
|
||||
bind ^h prev
|
||||
bind ^i next
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
# vim: ft=screen
|
||||
|
||||
bind h focus left
|
||||
bind j focus down
|
||||
bind k focus up
|
||||
bind l focus right
|
||||
|
||||
bind H resize -h -5
|
||||
bind J resize -v +5
|
||||
bind K resize -v -5
|
||||
bind L resize -h +5
|
||||
|
||||
# Window navigation (prev/next)
|
||||
bind ^h prev
|
||||
bind ^l next
|
||||
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
# export SCREENRC="$XDG_CONFIG_HOME"/screen/screenrc
|
||||
# export SCREENDIR="${XDG_RUNTIME_DIR}/screen"
|
||||
# $XDG_CONFIG_HOME/screen/screenrc
|
||||
|
||||
# Set prefix key to Ctrl-a
|
||||
escape ^Aa
|
||||
# Allow sending Ctrl+a to applications by pressing Ctrl+a twice
|
||||
bind a command -c screen
|
||||
|
||||
# Enable mouse scrolling and click
|
||||
termcapinfo xterm* ti@:te@
|
||||
|
||||
# 256 colors support
|
||||
term screen-256color
|
||||
attrcolor b ".I"
|
||||
defbce "on"
|
||||
|
||||
# Set window titles
|
||||
autodetach on
|
||||
shelltitle "$ |bash"
|
||||
startup_message off
|
||||
altscreen on
|
||||
defscrollback 4096 # History limit
|
||||
|
||||
# Status line (similar to tmux status bar)
|
||||
hardstatus alwayslastline
|
||||
hardstatus string '%{= kG}[%{G}%H%{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B}%Y-%m-%d %{W}%c%{g}]'
|
||||
|
||||
# Start window numbering at 1
|
||||
bind c screen 1
|
||||
bind 0 select 10
|
||||
bind ^c screen 1
|
||||
screen 1
|
||||
|
||||
# Visual bell instead of audible bell
|
||||
vbell on
|
||||
vbell_msg " Bell "
|
||||
|
||||
# Window splitting with | and -
|
||||
# Note: Screen doesn't support true splitting like tmux
|
||||
# These commands just create regions, not true panes
|
||||
bind | split
|
||||
bind - split -v
|
||||
|
||||
# Default to vi keybindings
|
||||
defutf8 on
|
||||
defescape ^Aa
|
||||
markkeys h=^B:l=^F:$=^E:^U=^Z:^D=^V
|
||||
|
||||
bind x kill
|
||||
|
||||
source ~/.config/screen/+qwerty.screenrc
|
||||
|
||||
|
||||
# Reload config (not directly supported in screen, but added for reference)
|
||||
# To reload config in screen, you typically do Ctrl+a : source ~/.screenrc
|
||||
15
tools/wezterm/.gitignore
vendored
15
tools/wezterm/.gitignore
vendored
|
|
@ -1,15 +0,0 @@
|
|||
# $DOTFILES/tools/wezterm/
|
||||
# Date: 2025-01-06
|
||||
# Author: js0ny
|
||||
|
||||
# Location:
|
||||
# $XDG_CONFIG_HOME/wezterm/wezterm.lua (works Windows)
|
||||
# Linking: Link the whole directory
|
||||
# ln -sf $DOTFILES/tools/wezterm $XDG_CONFIG_HOME/wezterm
|
||||
# New-Item -ItemType SymbolicLink -Target $DOTFILES\tools\wezterm -Path $Env:XDG_CONFIG_HOME\wezterm
|
||||
|
||||
# In windows, many cache & logs are stored in %APPDATA%\wezterm
|
||||
|
||||
*.json
|
||||
check_update
|
||||
plugins
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
local wezterm = require("wezterm")
|
||||
local os_type = require("utils").detected_os
|
||||
local color = require("color")
|
||||
|
||||
-- https://wezterm.org/config/lua/wezterm.gui/get_appearance.html
|
||||
-- wezterm.gui is not available to the mux server, so take care to
|
||||
-- do something reasonable when this config is evaluated by the mux
|
||||
local function get_appearance()
|
||||
if wezterm.gui then
|
||||
return wezterm.gui.get_appearance()
|
||||
end
|
||||
return "Dark"
|
||||
end
|
||||
|
||||
local function scheme_for_appearance(appearance)
|
||||
if appearance:find("Dark") then
|
||||
print("Dark")
|
||||
return "Catppuccin Mocha"
|
||||
else
|
||||
print("Light")
|
||||
return "Catppuccin Latte"
|
||||
-- return "rose-pine-dawn"
|
||||
end
|
||||
end
|
||||
|
||||
return function(config)
|
||||
config.max_fps = 120
|
||||
config.font = wezterm.font({
|
||||
family = "Maple Mono NF CN",
|
||||
})
|
||||
config.color_scheme = scheme_for_appearance(get_appearance())
|
||||
config.font_size = 12.0
|
||||
config.front_end = "WebGpu"
|
||||
config.webgpu_power_preference = "HighPerformance"
|
||||
if os_type.is_win then
|
||||
config.window_background_opacity = 0.7 -- Not working under WebGpu
|
||||
config.win32_system_backdrop = "Mica"
|
||||
end
|
||||
config.window_padding = {
|
||||
left = 0,
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
}
|
||||
-- Cursor
|
||||
config.animation_fps = 120
|
||||
if not os_type.is_win then -- This is sooooooo slow on Windows
|
||||
config.cursor_blink_ease_in = "EaseOut"
|
||||
config.cursor_blink_ease_out = "EaseOut"
|
||||
config.default_cursor_style = "BlinkingBlock"
|
||||
config.cursor_blink_rate = 650
|
||||
end
|
||||
-- Visual Bell
|
||||
config.visual_bell = {
|
||||
fade_in_function = "EaseIn",
|
||||
fade_in_duration_ms = 250,
|
||||
fade_out_function = "EaseOut",
|
||||
fade_out_duration_ms = 250,
|
||||
target = "CursorColor",
|
||||
}
|
||||
-- Command Palette
|
||||
config.window_frame = {
|
||||
font = wezterm.font("PingFang SC"),
|
||||
}
|
||||
config.window_decorations = "RESIZE"
|
||||
config.command_palette_fg_color = color.lavender
|
||||
config.command_palette_bg_color = color.base
|
||||
-- UnixLong / Emacs / AppleSymbols / WindowsLong / WindowsSymbols
|
||||
config.ui_key_cap_rendering = "AppleSymbols"
|
||||
end
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
local mocha = {
|
||||
rosewater = "#f5e0dc",
|
||||
flamingo = "#f2cdcd",
|
||||
pink = "#f5c2e7",
|
||||
mauve = "#cba6f7",
|
||||
red = "#f38ba8",
|
||||
maroon = "#eba0ac",
|
||||
peach = "#fab387",
|
||||
yellow = "#f9e2af",
|
||||
green = "#a6e3a1",
|
||||
teal = "#94e2d5",
|
||||
sky = "#89dceb",
|
||||
sapphire = "#74c7ec",
|
||||
blue = "#89b4fa",
|
||||
lavender = "#b4befe",
|
||||
text = "#cdd6f4",
|
||||
subtext1 = "#bac2de",
|
||||
subtext0 = "#a6adc8",
|
||||
overlay2 = "#9399b2",
|
||||
overlay1 = "#7f849c",
|
||||
overlay0 = "#6c7086",
|
||||
surface2 = "#585b70",
|
||||
surface1 = "#45475a",
|
||||
surface0 = "#313244",
|
||||
base = "#1e1e2e",
|
||||
mantle = "#181825",
|
||||
crust = "#11111b",
|
||||
}
|
||||
|
||||
return mocha
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
local M = {}
|
||||
local wezterm = require("wezterm")
|
||||
local act = wezterm.action
|
||||
|
||||
M.leader = {
|
||||
{
|
||||
key = "n",
|
||||
mods = "LEADER",
|
||||
action = act.ActivatePaneDirection("Down"),
|
||||
},
|
||||
{
|
||||
key = "e",
|
||||
mods = "LEADER",
|
||||
action = act.ActivatePaneDirection("Up"),
|
||||
},
|
||||
{
|
||||
key = "i",
|
||||
mods = "LEADER",
|
||||
action = act.ActivatePaneDirection("Right"),
|
||||
},
|
||||
{
|
||||
key = "N",
|
||||
mods = "LEADER",
|
||||
action = act.AdjustPaneSize({ "Down", 5 }),
|
||||
},
|
||||
{
|
||||
key = "E",
|
||||
mods = "LEADER",
|
||||
action = act.AdjustPaneSize({ "Up", 5 }),
|
||||
},
|
||||
{
|
||||
key = "I",
|
||||
mods = "LEADER",
|
||||
action = act.AdjustPaneSize({ "Right", 5 }),
|
||||
},
|
||||
}
|
||||
|
||||
local leader_common = require("keymaps.leaders").common
|
||||
|
||||
for _, v in ipairs(leader_common) do
|
||||
table.insert(M.leader, v)
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
@ -1,183 +0,0 @@
|
|||
-- vim: foldmethod=marker foldmarker=#region,#endregion
|
||||
-- Reference to: https://github.com/KevinSilvester/wezterm-config/blob/master/config/bindings.lua
|
||||
local wezterm = require("wezterm")
|
||||
local action = wezterm.action
|
||||
local act = wezterm.action
|
||||
local os_type = require("utils").detected_os
|
||||
|
||||
local SUPER
|
||||
|
||||
if os_type.is_mac then
|
||||
SUPER = "SUPER"
|
||||
else
|
||||
SUPER = "ALT"
|
||||
end
|
||||
|
||||
local layout = require("keymaps.colemak")
|
||||
|
||||
-- #region Key Tables
|
||||
local key_tables = {
|
||||
copy_mode = {
|
||||
-- #region Built-in CopyMode
|
||||
-- This keymaps seems cannot be merged.
|
||||
{ key = "Tab", mods = "NONE", action = act.CopyMode("MoveForwardWord") },
|
||||
{ key = "Tab", mods = "SHIFT", action = act.CopyMode("MoveBackwardWord") },
|
||||
{ key = "Enter", mods = "NONE", action = act.CopyMode("MoveToStartOfNextLine") },
|
||||
{ key = "Escape", mods = "NONE", action = act.Multiple({ "ScrollToBottom", { CopyMode = "Close" } }) },
|
||||
{ key = "Space", mods = "NONE", action = act.CopyMode({ SetSelectionMode = "Cell" }) },
|
||||
{ key = "$", mods = "NONE", action = act.CopyMode("MoveToEndOfLineContent") },
|
||||
{ key = "$", mods = "SHIFT", action = act.CopyMode("MoveToEndOfLineContent") },
|
||||
{ key = ",", mods = "NONE", action = act.CopyMode("JumpReverse") },
|
||||
{ key = "0", mods = "NONE", action = act.CopyMode("MoveToStartOfLine") },
|
||||
{ key = ";", mods = "NONE", action = act.CopyMode("JumpAgain") },
|
||||
{ key = "F", mods = "NONE", action = act.CopyMode({ JumpBackward = { prev_char = false } }) },
|
||||
{ key = "F", mods = "SHIFT", action = act.CopyMode({ JumpBackward = { prev_char = false } }) },
|
||||
{ key = "G", mods = "NONE", action = act.CopyMode("MoveToScrollbackBottom") },
|
||||
{ key = "G", mods = "SHIFT", action = act.CopyMode("MoveToScrollbackBottom") },
|
||||
{ key = "H", mods = "NONE", action = act.CopyMode("MoveToViewportTop") },
|
||||
{ key = "H", mods = "SHIFT", action = act.CopyMode("MoveToViewportTop") },
|
||||
{ key = "L", mods = "NONE", action = act.CopyMode("MoveToViewportBottom") },
|
||||
{ key = "L", mods = "SHIFT", action = act.CopyMode("MoveToViewportBottom") },
|
||||
{ key = "M", mods = "NONE", action = act.CopyMode("MoveToViewportMiddle") },
|
||||
{ key = "M", mods = "SHIFT", action = act.CopyMode("MoveToViewportMiddle") },
|
||||
{ key = "O", mods = "NONE", action = act.CopyMode("MoveToSelectionOtherEndHoriz") },
|
||||
{ key = "O", mods = "SHIFT", action = act.CopyMode("MoveToSelectionOtherEndHoriz") },
|
||||
{ key = "T", mods = "NONE", action = act.CopyMode({ JumpBackward = { prev_char = true } }) },
|
||||
{ key = "T", mods = "SHIFT", action = act.CopyMode({ JumpBackward = { prev_char = true } }) },
|
||||
{ key = "V", mods = "NONE", action = act.CopyMode({ SetSelectionMode = "Line" }) },
|
||||
{ key = "V", mods = "SHIFT", action = act.CopyMode({ SetSelectionMode = "Line" }) },
|
||||
{ key = "^", mods = "NONE", action = act.CopyMode("MoveToStartOfLineContent") },
|
||||
{ key = "^", mods = "SHIFT", action = act.CopyMode("MoveToStartOfLineContent") },
|
||||
{ key = "b", mods = "NONE", action = act.CopyMode("MoveBackwardWord") },
|
||||
{ key = "b", mods = "ALT", action = act.CopyMode("MoveBackwardWord") },
|
||||
{ key = "b", mods = "CTRL", action = act.CopyMode("PageUp") },
|
||||
{ key = "c", mods = "CTRL", action = act.Multiple({ "ScrollToBottom", { CopyMode = "Close" } }) },
|
||||
{ key = "d", mods = "CTRL", action = act.CopyMode({ MoveByPage = 0.5 }) },
|
||||
{ key = "e", mods = "NONE", action = act.CopyMode("MoveForwardWordEnd") },
|
||||
{ key = "f", mods = "NONE", action = act.CopyMode({ JumpForward = { prev_char = false } }) },
|
||||
{ key = "f", mods = "ALT", action = act.CopyMode("MoveForwardWord") },
|
||||
{ key = "f", mods = "CTRL", action = act.CopyMode("PageDown") },
|
||||
{ key = "g", mods = "NONE", action = act.CopyMode("MoveToScrollbackTop") },
|
||||
{ key = "g", mods = "CTRL", action = act.Multiple({ "ScrollToBottom", { CopyMode = "Close" } }) },
|
||||
{ key = "h", mods = "NONE", action = act.CopyMode("MoveLeft") },
|
||||
{ key = "j", mods = "NONE", action = act.CopyMode("MoveDown") },
|
||||
{ key = "k", mods = "NONE", action = act.CopyMode("MoveUp") },
|
||||
{ key = "l", mods = "NONE", action = act.CopyMode("MoveRight") },
|
||||
{ key = "m", mods = "ALT", action = act.CopyMode("MoveToStartOfLineContent") },
|
||||
{ key = "o", mods = "NONE", action = act.CopyMode("MoveToSelectionOtherEnd") },
|
||||
{ key = "q", mods = "NONE", action = act.Multiple({ "ScrollToBottom", { CopyMode = "Close" } }) },
|
||||
{ key = "t", mods = "NONE", action = act.CopyMode({ JumpForward = { prev_char = true } }) },
|
||||
{ key = "u", mods = "CTRL", action = act.CopyMode({ MoveByPage = -0.5 }) },
|
||||
{ key = "v", mods = "NONE", action = act.CopyMode({ SetSelectionMode = "Cell" }) },
|
||||
{ key = "v", mods = "CTRL", action = act.CopyMode({ SetSelectionMode = "Block" }) },
|
||||
{ key = "w", mods = "NONE", action = act.CopyMode("MoveForwardWord") },
|
||||
{
|
||||
key = "y",
|
||||
mods = "NONE",
|
||||
action = act.Multiple({
|
||||
{ CopyTo = "ClipboardAndPrimarySelection" },
|
||||
{ Multiple = { "ScrollToBottom", { CopyMode = "Close" } } },
|
||||
}),
|
||||
},
|
||||
{ key = "PageUp", mods = "NONE", action = act.CopyMode("PageUp") },
|
||||
{ key = "PageDown", mods = "NONE", action = act.CopyMode("PageDown") },
|
||||
{ key = "End", mods = "NONE", action = act.CopyMode("MoveToEndOfLineContent") },
|
||||
{ key = "Home", mods = "NONE", action = act.CopyMode("MoveToStartOfLine") },
|
||||
{ key = "LeftArrow", mods = "NONE", action = act.CopyMode("MoveLeft") },
|
||||
{ key = "LeftArrow", mods = "ALT", action = act.CopyMode("MoveBackwardWord") },
|
||||
{ key = "RightArrow", mods = "NONE", action = act.CopyMode("MoveRight") },
|
||||
{ key = "RightArrow", mods = "ALT", action = act.CopyMode("MoveForwardWord") },
|
||||
{ key = "UpArrow", mods = "NONE", action = act.CopyMode("MoveUp") },
|
||||
{ key = "DownArrow", mods = "NONE", action = act.CopyMode("MoveDown") },
|
||||
-- #endregion
|
||||
-- #region Customized CopyMode
|
||||
{ key = "n", mods = "NONE", action = act.CopyMode("MoveDown") },
|
||||
{ key = "e", mods = "NONE", action = act.CopyMode("MoveUp") },
|
||||
{ key = "i", mods = "NONE", action = act.CopyMode("MoveRight") },
|
||||
{ key = "j", mods = "NONE", action = act.CopyMode("MoveForwardWordEnd") },
|
||||
-- #endregion
|
||||
},
|
||||
resize_pane = {
|
||||
{ key = "h", mods = "NONE", action = act.AdjustPaneSize({ "Left", 1 }) },
|
||||
{ key = "n", mods = "NONE", action = act.AdjustPaneSize({ "Down", 1 }) },
|
||||
{ key = "e", mods = "NONE", action = act.AdjustPaneSize({ "Up", 1 }) },
|
||||
{ key = "i", mods = "NONE", action = act.AdjustPaneSize({ "Right", 1 }) },
|
||||
{ key = "q", mods = "NONE", action = "PopKeyTable" },
|
||||
},
|
||||
}
|
||||
-- #endregion
|
||||
|
||||
local leader_keys = layout.leader
|
||||
|
||||
|
||||
-- #region Ctrl Keymaps
|
||||
local ctrl_keys = {
|
||||
{
|
||||
key = "W",
|
||||
mods = "CTRL",
|
||||
action = act.CloseCurrentPane({ confirm = true }),
|
||||
},
|
||||
{ -- ^C to copy if selection is active, otherwise send signal
|
||||
-- https://wezfurlong.org/wezterm/config/lua/keyassignment/ClearSelection.html?h=selection
|
||||
key = "c",
|
||||
mods = "CTRL",
|
||||
action = wezterm.action_callback(function(window, pane)
|
||||
local has_selection = window:get_selection_text_for_pane(pane) ~= ""
|
||||
if has_selection then
|
||||
window:perform_action(act.CopyTo("ClipboardAndPrimarySelection"), pane)
|
||||
|
||||
window:perform_action(act.ClearSelection, pane)
|
||||
else
|
||||
window:perform_action(act.SendKey({ key = "c", mods = "CTRL" }), pane)
|
||||
end
|
||||
end),
|
||||
},
|
||||
}
|
||||
-- #endregion
|
||||
|
||||
-- #region SUPER Keymaps
|
||||
local super_keys = {
|
||||
{ key = "LeftArrow", mods = SUPER, action = act.SendString("\u{1b}OH") },
|
||||
{ key = "RightArrow", mods = SUPER, action = act.SendString("\u{1b}OF") },
|
||||
{ key = "Backspace", mods = SUPER, action = act.SendString("\u{15}") },
|
||||
{ key = "0", mods = SUPER, action = act.ActivateTab(-1) },
|
||||
{ key = "t", mods = SUPER, action = act.SpawnTab("DefaultDomain") },
|
||||
{ key = "w", mods = SUPER, action = act.CloseCurrentTab({ confirm = false }) },
|
||||
}
|
||||
for i = 1, 9 do
|
||||
table.insert(super_keys, { key = tostring(i), mods = SUPER, action = act.ActivateTab(i - 1) })
|
||||
end
|
||||
-- #endregion
|
||||
|
||||
-- Concat all keymaps
|
||||
local keys = {}
|
||||
|
||||
for _, keymap in ipairs(leader_keys) do
|
||||
table.insert(keys, keymap)
|
||||
end
|
||||
|
||||
for _, keymap in ipairs(ctrl_keys) do
|
||||
table.insert(keys, keymap)
|
||||
end
|
||||
|
||||
for _, keymap in ipairs(super_keys) do
|
||||
table.insert(keys, keymap)
|
||||
end
|
||||
|
||||
return function(config)
|
||||
config.leader = { key = "q", mods = "CTRL" }
|
||||
config.keys = keys
|
||||
config.key_tables = key_tables
|
||||
config.mouse_bindings = {
|
||||
{
|
||||
event = { Up = { streak = 1, button = "Left" } },
|
||||
mods = "CTRL",
|
||||
action = act.OpenLinkAtMouseCursor,
|
||||
},
|
||||
{
|
||||
event = { Up = { streak = 1, button = "Left" } },
|
||||
mods = "SUPER",
|
||||
action = act.OpenLinkAtMouseCursor,
|
||||
},
|
||||
}
|
||||
end
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
local M = {}
|
||||
local wezterm = require("wezterm")
|
||||
local act = wezterm.action
|
||||
|
||||
-- #region Leader Keymaps
|
||||
M.common = {
|
||||
{
|
||||
key = "q",
|
||||
mods = "LEADER",
|
||||
action = act.SendKey({ key = "q", mods = "CTRL" }),
|
||||
},
|
||||
-- Windows Management
|
||||
{ -- leader keys
|
||||
key = "|",
|
||||
mods = "LEADER|SHIFT",
|
||||
action = act.SplitHorizontal({ domain = "CurrentPaneDomain" }),
|
||||
},
|
||||
{
|
||||
key = "-",
|
||||
mods = "LEADER",
|
||||
action = act.SplitVertical({ domain = "CurrentPaneDomain" }),
|
||||
},
|
||||
{
|
||||
key = "h",
|
||||
mods = "LEADER",
|
||||
action = act.ActivatePaneDirection("Left"),
|
||||
},
|
||||
{
|
||||
key = "H",
|
||||
mods = "LEADER",
|
||||
action = act.AdjustPaneSize({ "Left", 5 }),
|
||||
},
|
||||
{
|
||||
key = "/",
|
||||
mods = "LEADER",
|
||||
action = act.Search({ Regex = "" }),
|
||||
},
|
||||
{
|
||||
key = "?",
|
||||
mods = "LEADER|SHIFT",
|
||||
action = act.Search({ CaseSensitiveString = "" }),
|
||||
},
|
||||
{
|
||||
key = ";",
|
||||
mods = "LEADER",
|
||||
action = act.ShowLauncher,
|
||||
},
|
||||
{
|
||||
key = ":",
|
||||
mods = "LEADER|SHIFT",
|
||||
action = act.ActivateCommandPalette,
|
||||
},
|
||||
{
|
||||
key = "r",
|
||||
mods = "LEADER",
|
||||
action = act.ActivateKeyTable({
|
||||
name = "resize_pane",
|
||||
one_shot = false,
|
||||
timeout_milliseconds = 2000,
|
||||
}),
|
||||
},
|
||||
}
|
||||
-- #endregion
|
||||
|
||||
|
||||
|
||||
return M
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
local M = {}
|
||||
local wezterm = require("wezterm")
|
||||
local act = wezterm.action
|
||||
|
||||
M.qwerty = {
|
||||
|
||||
{
|
||||
key = "j",
|
||||
mods = "LEADER",
|
||||
action = act.ActivatePaneDirection("Down"),
|
||||
},
|
||||
{
|
||||
key = "k",
|
||||
mods = "LEADER",
|
||||
action = act.ActivatePaneDirection("Up"),
|
||||
},
|
||||
{
|
||||
key = "l",
|
||||
mods = "LEADER",
|
||||
action = act.ActivatePaneDirection("Right"),
|
||||
},
|
||||
{
|
||||
key = "J",
|
||||
mods = "LEADER",
|
||||
action = act.AdjustPaneSize({ "Down", 5 }),
|
||||
},
|
||||
{
|
||||
key = "K",
|
||||
mods = "LEADER",
|
||||
action = act.AdjustPaneSize({ "Up", 5 }),
|
||||
},
|
||||
{
|
||||
key = "L",
|
||||
mods = "LEADER",
|
||||
action = act.AdjustPaneSize({ "Right", 5 }),
|
||||
},
|
||||
}
|
||||
|
||||
local leader_common = require("keymaps.leaders").common
|
||||
|
||||
for _, v in ipairs(leader_common) do
|
||||
table.insert(M.leader, v)
|
||||
end
|
||||
|
||||
return M
|
||||
|
|
@ -1,63 +0,0 @@
|
|||
local os_type = require("utils").detected_os
|
||||
|
||||
return function(config)
|
||||
if os_type.is_win then
|
||||
config.default_prog = { "pwsh.exe", "-NoLogo", "-NoProfileLoadTime" }
|
||||
config.launch_menu = {
|
||||
{
|
||||
label = "Local - PowerShell",
|
||||
args = { "pwsh.exe", "-NoLogo", "-NoProfileLoadTime" },
|
||||
},
|
||||
{
|
||||
label = "Local - PowerShell Administator",
|
||||
args = { "sudo.exe", "pwsh.exe", "-NoLogo", "-NoProfileLoadTime" },
|
||||
},
|
||||
{
|
||||
label = "WSL1 - Arch",
|
||||
args = { "wsl.exe", "-d", "Arch" },
|
||||
},
|
||||
{
|
||||
label = "WSL2 - kali-linux",
|
||||
args = { "wsl.exe", "-d", "kali-linux" },
|
||||
},
|
||||
{
|
||||
label = "Local - NuShell",
|
||||
args = { "nu" },
|
||||
},
|
||||
{
|
||||
label = "Local - Windows PowerShell",
|
||||
args = { "powershell.exe" },
|
||||
},
|
||||
{
|
||||
label = "Local - Command Prompt",
|
||||
args = { "cmd.exe" },
|
||||
},
|
||||
{
|
||||
label = "WSL1 - Arch Zsh",
|
||||
args = { "wsl.exe", "-d", "Arch", "zsh" },
|
||||
},
|
||||
}
|
||||
elseif os_type.is_mac then
|
||||
config.default_prog = { "/opt/homebrew/bin/fish", "-l" }
|
||||
else
|
||||
config.default_prog = { "fish" }
|
||||
config.launch_menu = {
|
||||
{
|
||||
label = "Local - Fish",
|
||||
args = { "fish", "-l" },
|
||||
},
|
||||
{
|
||||
label = "Local - Zsh",
|
||||
args = { "zsh", "-l" },
|
||||
},
|
||||
{
|
||||
label = "Local - PowerShell",
|
||||
args = { "pwsh", "-NoLogo", "-NoProfileLoadTime", "-Login" },
|
||||
},
|
||||
{
|
||||
label = "Local - NuShell",
|
||||
args = { "nu", "-l" },
|
||||
},
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
return function(config)
|
||||
-- Environment
|
||||
config.set_environment_variables = {
|
||||
TERM = "xterm-256color",
|
||||
-- TERM_PROGRAM = "wezterm", -- wezterm already sets this
|
||||
}
|
||||
config.enable_wayland = false
|
||||
end
|
||||
|
|
@ -1,125 +0,0 @@
|
|||
local wezterm = require("wezterm")
|
||||
local nf = wezterm.nerdfonts
|
||||
local color = require("color")
|
||||
|
||||
local tabline = wezterm.plugin.require("https://github.com/michaelbrusegard/tabline.wez")
|
||||
tabline.setup({
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = "Catppuccin Mocha",
|
||||
tabs_enabled = true,
|
||||
theme_overrides = {
|
||||
tab = {
|
||||
inactive = { bg = color.crust , fg = color.text },
|
||||
active = { fg = color.lavender, bg = color.base },
|
||||
inactive_hover = { fg = color.pink, bg = color.surface0 },
|
||||
},
|
||||
normal_mode = {
|
||||
a = { fg = color.mantle, bg = color.lavender }, -- bg: Lavender (Mocha)
|
||||
b = { fg = color.lavender, bg = color.surface0 }, -- fg: Lavender (Mocha)
|
||||
c = { bg = color.base, fg = color.text },
|
||||
},
|
||||
copy_mode = {
|
||||
c = { bg = color.base, fg = color.text },
|
||||
},
|
||||
search_mode = {
|
||||
c = { bg = color.base, fg = color.text },
|
||||
},
|
||||
window_mode = {
|
||||
c = { bg = color.base, fg = color.text },
|
||||
},
|
||||
},
|
||||
section_separators = {
|
||||
left = nf.ple_flame_thick,
|
||||
right = nf.ple_flame_thick_mirrored,
|
||||
},
|
||||
component_separators = {
|
||||
left = nf.ple_flame_thick,
|
||||
right = nf.ple_flame_thick_mirrored,
|
||||
},
|
||||
tab_separators = {
|
||||
left = nf.ple_ice_waveform,
|
||||
right = nf.ple_ice_waveform_mirrored,
|
||||
},
|
||||
},
|
||||
sections = {
|
||||
tabline_a = {
|
||||
{
|
||||
"mode",
|
||||
icon = nf.md_alpha_w_box_outline,
|
||||
-- icons_only = true,
|
||||
fmt = function(str)
|
||||
return str:sub(1, 1)
|
||||
end,
|
||||
},
|
||||
},
|
||||
tabline_b = { "window" },
|
||||
tabline_c = { "" },
|
||||
tab_active = {
|
||||
"index",
|
||||
{ "parent", padding = 0 },
|
||||
"/",
|
||||
{ "cwd", padding = { left = 0, right = 1 } },
|
||||
{ "zoomed", padding = 0 },
|
||||
},
|
||||
tab_inactive = {
|
||||
"index",
|
||||
{
|
||||
"process",
|
||||
padding = { left = 0, right = 1 },
|
||||
process_to_icon = {
|
||||
["dotnet"] = { nf.dev_dotnet },
|
||||
["dotnet.exe"] = { nf.dev_dotnet },
|
||||
["emacs"] = { nf.custom_emacs },
|
||||
["pwsh"] = { nf.md_powershell },
|
||||
["pwsh.exe"] = { nf.md_powershell },
|
||||
["powershell.exe"] = { nf.md_powershell },
|
||||
["python3.13"] = { nf.md_language_python },
|
||||
["less"] = { nf.fa_pager },
|
||||
["nu"] = { nf.seti_shell },
|
||||
["nu.exe"] = { nf.seti_shell },
|
||||
},
|
||||
},
|
||||
},
|
||||
tabline_x = {},
|
||||
tabline_y = { "ram" },
|
||||
tabline_z = { "datetime" },
|
||||
},
|
||||
extensions = {},
|
||||
})
|
||||
|
||||
return function(config)
|
||||
config.hide_tab_bar_if_only_one_tab = true
|
||||
config.tab_bar_at_bottom = false
|
||||
-- If set to false, the tab bar will be terminal-like
|
||||
config.use_fancy_tab_bar = false
|
||||
config.colors = {
|
||||
tab_bar = {
|
||||
background = color.base,
|
||||
active_tab = {
|
||||
-- bg_color = color.pink,
|
||||
bg_color = color.lavender,
|
||||
fg_color = color.overlay0,
|
||||
italic = true,
|
||||
},
|
||||
inactive_tab = {
|
||||
bg_color = color.base,
|
||||
fg_color = color.text,
|
||||
},
|
||||
inactive_tab_hover = {
|
||||
bg_color = color.mauve,
|
||||
fg_color = color.surface2,
|
||||
italic = true,
|
||||
},
|
||||
new_tab = {
|
||||
bg_color = color.base,
|
||||
fg_color = color.text,
|
||||
},
|
||||
new_tab_hover = {
|
||||
bg_color = color.surface0,
|
||||
fg_color = color.pink,
|
||||
italic = true,
|
||||
},
|
||||
},
|
||||
}
|
||||
end
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
local wezterm = require("wezterm")
|
||||
|
||||
local function is_found(str, pattern)
|
||||
return string.find(str, pattern) ~= nil
|
||||
end
|
||||
|
||||
local M = {}
|
||||
|
||||
local function platform()
|
||||
local is_win = is_found(wezterm.target_triple, "windows")
|
||||
local is_linux = is_found(wezterm.target_triple, "linux")
|
||||
local is_mac = is_found(wezterm.target_triple, "apple")
|
||||
local os
|
||||
|
||||
if is_win then
|
||||
os = "windows"
|
||||
elseif is_linux then
|
||||
os = "linux"
|
||||
elseif is_mac then
|
||||
os = "mac"
|
||||
else
|
||||
error("Unknown platform")
|
||||
end
|
||||
|
||||
return {
|
||||
os = os,
|
||||
is_win = is_win,
|
||||
is_linux = is_linux,
|
||||
is_mac = is_mac,
|
||||
}
|
||||
end
|
||||
|
||||
local _platform = platform()
|
||||
|
||||
M.detected_os = _platform
|
||||
|
||||
return M
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
-- vim: foldmethod=marker foldmarker=#region,#endregion
|
||||
-- $DOTFILES/tools/wezterm/wezterm.lua
|
||||
-- Date: 2024-12-22
|
||||
-- Author: js0ny
|
||||
|
||||
local wezterm = require("wezterm")
|
||||
local color = require("color")
|
||||
|
||||
local config = wezterm.config_builder()
|
||||
|
||||
require("tab")(config)
|
||||
require("appearance")(config)
|
||||
require("keymaps")(config)
|
||||
require("launcher")(config)
|
||||
require("misc")(config)
|
||||
|
||||
return config
|
||||
6
tools/yazi/.gitignore
vendored
6
tools/yazi/.gitignore
vendored
|
|
@ -1,6 +0,0 @@
|
|||
flavors/
|
||||
plugins/
|
||||
|
||||
package.toml
|
||||
theme.toml
|
||||
*.toml-*
|
||||
|
|
@ -1,750 +0,0 @@
|
|||
[manager]
|
||||
cwd = { fg = "#94e2d5" }
|
||||
|
||||
hovered = { fg = "#1e1e2e", bg = "#b4befe" }
|
||||
preview_hovered = { fg = "#1e1e2e", bg = "#cdd6f4" }
|
||||
|
||||
find_keyword = { fg = "#f9e2af", italic = true }
|
||||
find_position = { fg = "#f5c2e7", bg = "reset", italic = true }
|
||||
|
||||
marker_copied = { fg = "#a6e3a1", bg = "#a6e3a1" }
|
||||
marker_cut = { fg = "#f38ba8", bg = "#f38ba8" }
|
||||
marker_marked = { fg = "#94e2d5", bg = "#94e2d5" }
|
||||
marker_selected = { fg = "#b4befe", bg = "#b4befe" }
|
||||
|
||||
tab_active = { fg = "#1e1e2e", bg = "#cdd6f4" }
|
||||
tab_inactive = { fg = "#cdd6f4", bg = "#45475a" }
|
||||
tab_width = 1
|
||||
|
||||
count_copied = { fg = "#1e1e2e", bg = "#a6e3a1" }
|
||||
count_cut = { fg = "#1e1e2e", bg = "#f38ba8" }
|
||||
count_selected = { fg = "#1e1e2e", bg = "#b4befe" }
|
||||
|
||||
border_symbol = "│"
|
||||
border_style = { fg = "#7f849c" }
|
||||
|
||||
syntect_theme = "~/.config/yazi/Catppuccin-mocha.tmTheme"
|
||||
|
||||
[mode]
|
||||
normal_main = { fg = "#1e1e2e", bg = "#b4befe", bold = true }
|
||||
normal_alt = { fg = "#b4befe", bg = "#313244"}
|
||||
|
||||
select_main = { fg = "#1e1e2e", bg = "#a6e3a1", bold = true }
|
||||
select_alt = { fg = "#a6e3a1", bg = "#313244"}
|
||||
|
||||
unset_main = { fg = "#1e1e2e", bg = "#f2cdcd", bold = true }
|
||||
unset_alt = { fg = "#f2cdcd", bg = "#313244"}
|
||||
|
||||
[status]
|
||||
separator_open = ""
|
||||
separator_close = ""
|
||||
|
||||
progress_label = { fg = "#ffffff", bold = true }
|
||||
progress_normal = { fg = "#89b4fa", bg = "#45475a" }
|
||||
progress_error = { fg = "#f38ba8", bg = "#45475a" }
|
||||
|
||||
perm_type = { fg = "#89b4fa" }
|
||||
perm_read = { fg = "#f9e2af" }
|
||||
perm_write = { fg = "#f38ba8" }
|
||||
perm_exec = { fg = "#a6e3a1" }
|
||||
perm_sep = { fg = "#7f849c" }
|
||||
|
||||
[input]
|
||||
border = { fg = "#b4befe" }
|
||||
title = {}
|
||||
value = {}
|
||||
selected = { reversed = true }
|
||||
|
||||
[pick]
|
||||
border = { fg = "#b4befe" }
|
||||
active = { fg = "#f5c2e7" }
|
||||
inactive = {}
|
||||
|
||||
[confirm]
|
||||
border = { fg = "#b4befe" }
|
||||
title = { fg = "#b4befe" }
|
||||
content = {}
|
||||
list = {}
|
||||
btn_yes = { reversed = true }
|
||||
btn_no = {}
|
||||
|
||||
[completion]
|
||||
border = { fg = "#b4befe" }
|
||||
|
||||
[tasks]
|
||||
border = { fg = "#b4befe" }
|
||||
title = {}
|
||||
hovered = { underline = true }
|
||||
|
||||
[which]
|
||||
mask = { bg = "#313244" }
|
||||
cand = { fg = "#94e2d5" }
|
||||
rest = { fg = "#9399b2" }
|
||||
desc = { fg = "#f5c2e7" }
|
||||
separator = " "
|
||||
separator_style = { fg = "#585b70" }
|
||||
|
||||
[help]
|
||||
on = { fg = "#94e2d5" }
|
||||
run = { fg = "#f5c2e7" }
|
||||
desc = { fg = "#9399b2" }
|
||||
hovered = { bg = "#585b70", bold = true }
|
||||
footer = { fg = "#cdd6f4", bg = "#45475a" }
|
||||
|
||||
[notify]
|
||||
title_info = { fg = "#94e2d5" }
|
||||
title_warn = { fg = "#f9e2af" }
|
||||
title_error = { fg = "#f38ba8" }
|
||||
|
||||
[filetype]
|
||||
rules = [
|
||||
# Media
|
||||
{ mime = "image/*", fg = "#94e2d5" },
|
||||
{ mime = "{audio,video}/*", fg = "#f9e2af" },
|
||||
|
||||
# Archives
|
||||
{ mime = "application/*zip", fg = "#f5c2e7" },
|
||||
{ mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#f5c2e7" },
|
||||
|
||||
# Documents
|
||||
{ mime = "application/{pdf,doc,rtf}", fg = "#a6e3a1" },
|
||||
|
||||
# Fallback
|
||||
{ name = "*", fg = "#cdd6f4" },
|
||||
{ name = "*/", fg = "#b4befe" }
|
||||
]
|
||||
|
||||
[icon]
|
||||
files = [
|
||||
{ name = "kritadisplayrc", text = "", fg = "#cba6f7" },
|
||||
{ name = ".gtkrc-2.0", text = "", fg = "#f5e0dc" },
|
||||
{ name = "bspwmrc", text = "", fg = "#313244" },
|
||||
{ name = "webpack", text = "", fg = "#74c7ec" },
|
||||
{ name = "tsconfig.json", text = "", fg = "#74c7ec" },
|
||||
{ name = ".vimrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "gemfile$", text = "", fg = "#313244" },
|
||||
{ name = "xmobarrc", text = "", fg = "#f38ba8" },
|
||||
{ name = "avif", text = "", fg = "#7f849c" },
|
||||
{ name = "fp-info-cache", text = "", fg = "#f5e0dc" },
|
||||
{ name = ".zshrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "robots.txt", text = "", fg = "#6c7086" },
|
||||
{ name = "dockerfile", text = "", fg = "#89b4fa" },
|
||||
{ name = ".git-blame-ignore-revs", text = "", fg = "#fab387" },
|
||||
{ name = ".nvmrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "hyprpaper.conf", text = "", fg = "#74c7ec" },
|
||||
{ name = ".prettierignore", text = "", fg = "#89b4fa" },
|
||||
{ name = "rakefile", text = "", fg = "#313244" },
|
||||
{ name = "code_of_conduct", text = "", fg = "#f38ba8" },
|
||||
{ name = "cmakelists.txt", text = "", fg = "#cdd6f4" },
|
||||
{ name = ".env", text = "", fg = "#f9e2af" },
|
||||
{ name = "copying.lesser", text = "", fg = "#f9e2af" },
|
||||
{ name = "readme", text = "", fg = "#f5e0dc" },
|
||||
{ name = "settings.gradle", text = "", fg = "#585b70" },
|
||||
{ name = "gruntfile.coffee", text = "", fg = "#fab387" },
|
||||
{ name = ".eslintignore", text = "", fg = "#585b70" },
|
||||
{ name = "kalgebrarc", text = "", fg = "#89b4fa" },
|
||||
{ name = "kdenliverc", text = "", fg = "#89b4fa" },
|
||||
{ name = ".prettierrc.cjs", text = "", fg = "#89b4fa" },
|
||||
{ name = "cantorrc", text = "", fg = "#89b4fa" },
|
||||
{ name = "rmd", text = "", fg = "#74c7ec" },
|
||||
{ name = "vagrantfile$", text = "", fg = "#6c7086" },
|
||||
{ name = ".Xauthority", text = "", fg = "#fab387" },
|
||||
{ name = "prettier.config.ts", text = "", fg = "#89b4fa" },
|
||||
{ name = "node_modules", text = "", fg = "#f38ba8" },
|
||||
{ name = ".prettierrc.toml", text = "", fg = "#89b4fa" },
|
||||
{ name = "build.zig.zon", text = "", fg = "#fab387" },
|
||||
{ name = ".ds_store", text = "", fg = "#45475a" },
|
||||
{ name = "PKGBUILD", text = "", fg = "#89b4fa" },
|
||||
{ name = ".prettierrc", text = "", fg = "#89b4fa" },
|
||||
{ name = ".bash_profile", text = "", fg = "#a6e3a1" },
|
||||
{ name = ".npmignore", text = "", fg = "#f38ba8" },
|
||||
{ name = ".mailmap", text = "", fg = "#fab387" },
|
||||
{ name = ".codespellrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "svelte.config.js", text = "", fg = "#fab387" },
|
||||
{ name = "eslint.config.ts", text = "", fg = "#585b70" },
|
||||
{ name = "config", text = "", fg = "#7f849c" },
|
||||
{ name = ".gitlab-ci.yml", text = "", fg = "#fab387" },
|
||||
{ name = ".gitconfig", text = "", fg = "#fab387" },
|
||||
{ name = "_gvimrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = ".xinitrc", text = "", fg = "#fab387" },
|
||||
{ name = "checkhealth", text = "", fg = "#89b4fa" },
|
||||
{ name = "sxhkdrc", text = "", fg = "#313244" },
|
||||
{ name = ".bashrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "tailwind.config.mjs", text = "", fg = "#74c7ec" },
|
||||
{ name = "ext_typoscript_setup.txt", text = "", fg = "#fab387" },
|
||||
{ name = "commitlint.config.ts", text = "", fg = "#94e2d5" },
|
||||
{ name = "py.typed", text = "", fg = "#f9e2af" },
|
||||
{ name = ".nanorc", text = "", fg = "#313244" },
|
||||
{ name = "commit_editmsg", text = "", fg = "#fab387" },
|
||||
{ name = ".luaurc", text = "", fg = "#89b4fa" },
|
||||
{ name = "fp-lib-table", text = "", fg = "#f5e0dc" },
|
||||
{ name = ".editorconfig", text = "", fg = "#f5e0dc" },
|
||||
{ name = "justfile", text = "", fg = "#7f849c" },
|
||||
{ name = "kdeglobals", text = "", fg = "#89b4fa" },
|
||||
{ name = "license.md", text = "", fg = "#f9e2af" },
|
||||
{ name = ".clang-format", text = "", fg = "#7f849c" },
|
||||
{ name = "docker-compose.yaml", text = "", fg = "#89b4fa" },
|
||||
{ name = "copying", text = "", fg = "#f9e2af" },
|
||||
{ name = "go.mod", text = "", fg = "#74c7ec" },
|
||||
{ name = "lxqt.conf", text = "", fg = "#89b4fa" },
|
||||
{ name = "brewfile", text = "", fg = "#313244" },
|
||||
{ name = "gulpfile.coffee", text = "", fg = "#f38ba8" },
|
||||
{ name = ".dockerignore", text = "", fg = "#89b4fa" },
|
||||
{ name = ".settings.json", text = "", fg = "#6c7086" },
|
||||
{ name = "tailwind.config.js", text = "", fg = "#74c7ec" },
|
||||
{ name = ".clang-tidy", text = "", fg = "#7f849c" },
|
||||
{ name = ".gvimrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "nuxt.config.cjs", text = "", fg = "#a6e3a1" },
|
||||
{ name = "xsettingsd.conf", text = "", fg = "#fab387" },
|
||||
{ name = "nuxt.config.js", text = "", fg = "#a6e3a1" },
|
||||
{ name = "eslint.config.cjs", text = "", fg = "#585b70" },
|
||||
{ name = "sym-lib-table", text = "", fg = "#f5e0dc" },
|
||||
{ name = ".condarc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "xmonad.hs", text = "", fg = "#f38ba8" },
|
||||
{ name = "tmux.conf", text = "", fg = "#a6e3a1" },
|
||||
{ name = "xmobarrc.hs", text = "", fg = "#f38ba8" },
|
||||
{ name = ".prettierrc.yaml", text = "", fg = "#89b4fa" },
|
||||
{ name = ".pre-commit-config.yaml", text = "", fg = "#fab387" },
|
||||
{ name = "i3blocks.conf", text = "", fg = "#f5e0dc" },
|
||||
{ name = "xorg.conf", text = "", fg = "#fab387" },
|
||||
{ name = ".zshenv", text = "", fg = "#a6e3a1" },
|
||||
{ name = "vlcrc", text = "", fg = "#fab387" },
|
||||
{ name = "license", text = "", fg = "#f9e2af" },
|
||||
{ name = "unlicense", text = "", fg = "#f9e2af" },
|
||||
{ name = "tmux.conf.local", text = "", fg = "#a6e3a1" },
|
||||
{ name = ".SRCINFO", text = "", fg = "#89b4fa" },
|
||||
{ name = "tailwind.config.ts", text = "", fg = "#74c7ec" },
|
||||
{ name = "security.md", text = "", fg = "#bac2de" },
|
||||
{ name = "security", text = "", fg = "#bac2de" },
|
||||
{ name = ".eslintrc", text = "", fg = "#585b70" },
|
||||
{ name = "gradle.properties", text = "", fg = "#585b70" },
|
||||
{ name = "code_of_conduct.md", text = "", fg = "#f38ba8" },
|
||||
{ name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#fab387" },
|
||||
{ name = "PrusaSlicer.ini", text = "", fg = "#fab387" },
|
||||
{ name = "procfile", text = "", fg = "#7f849c" },
|
||||
{ name = "mpv.conf", text = "", fg = "#1e1e2e" },
|
||||
{ name = ".prettierrc.json5", text = "", fg = "#89b4fa" },
|
||||
{ name = "i3status.conf", text = "", fg = "#f5e0dc" },
|
||||
{ name = "prettier.config.mjs", text = "", fg = "#89b4fa" },
|
||||
{ name = ".pylintrc", text = "", fg = "#7f849c" },
|
||||
{ name = "prettier.config.cjs", text = "", fg = "#89b4fa" },
|
||||
{ name = ".luacheckrc", text = "", fg = "#89b4fa" },
|
||||
{ name = "containerfile", text = "", fg = "#89b4fa" },
|
||||
{ name = "eslint.config.mjs", text = "", fg = "#585b70" },
|
||||
{ name = "gruntfile.js", text = "", fg = "#fab387" },
|
||||
{ name = "bun.lockb", text = "", fg = "#f5e0dc" },
|
||||
{ name = ".gitattributes", text = "", fg = "#fab387" },
|
||||
{ name = "gruntfile.ts", text = "", fg = "#fab387" },
|
||||
{ name = "pom.xml", text = "", fg = "#313244" },
|
||||
{ name = "favicon.ico", text = "", fg = "#f9e2af" },
|
||||
{ name = "package-lock.json", text = "", fg = "#313244" },
|
||||
{ name = "build", text = "", fg = "#a6e3a1" },
|
||||
{ name = "package.json", text = "", fg = "#f38ba8" },
|
||||
{ name = "nuxt.config.ts", text = "", fg = "#a6e3a1" },
|
||||
{ name = "nuxt.config.mjs", text = "", fg = "#a6e3a1" },
|
||||
{ name = "mix.lock", text = "", fg = "#7f849c" },
|
||||
{ name = "makefile", text = "", fg = "#7f849c" },
|
||||
{ name = "gulpfile.js", text = "", fg = "#f38ba8" },
|
||||
{ name = "lxde-rc.xml", text = "", fg = "#9399b2" },
|
||||
{ name = "kritarc", text = "", fg = "#cba6f7" },
|
||||
{ name = "gtkrc", text = "", fg = "#f5e0dc" },
|
||||
{ name = "ionic.config.json", text = "", fg = "#89b4fa" },
|
||||
{ name = ".prettierrc.mjs", text = "", fg = "#89b4fa" },
|
||||
{ name = ".prettierrc.yml", text = "", fg = "#89b4fa" },
|
||||
{ name = ".npmrc", text = "", fg = "#f38ba8" },
|
||||
{ name = "weston.ini", text = "", fg = "#f9e2af" },
|
||||
{ name = "gulpfile.babel.js", text = "", fg = "#f38ba8" },
|
||||
{ name = "i18n.config.ts", text = "", fg = "#7f849c" },
|
||||
{ name = "commitlint.config.js", text = "", fg = "#94e2d5" },
|
||||
{ name = ".gitmodules", text = "", fg = "#fab387" },
|
||||
{ name = "gradle-wrapper.properties", text = "", fg = "#585b70" },
|
||||
{ name = "hypridle.conf", text = "", fg = "#74c7ec" },
|
||||
{ name = "vercel.json", text = "▲", fg = "#f5e0dc" },
|
||||
{ name = "hyprlock.conf", text = "", fg = "#74c7ec" },
|
||||
{ name = "go.sum", text = "", fg = "#74c7ec" },
|
||||
{ name = "kdenlive-layoutsrc", text = "", fg = "#89b4fa" },
|
||||
{ name = "gruntfile.babel.js", text = "", fg = "#fab387" },
|
||||
{ name = "compose.yml", text = "", fg = "#89b4fa" },
|
||||
{ name = "i18n.config.js", text = "", fg = "#7f849c" },
|
||||
{ name = "readme.md", text = "", fg = "#f5e0dc" },
|
||||
{ name = "gradlew", text = "", fg = "#585b70" },
|
||||
{ name = "go.work", text = "", fg = "#74c7ec" },
|
||||
{ name = "gulpfile.ts", text = "", fg = "#f38ba8" },
|
||||
{ name = "gnumakefile", text = "", fg = "#7f849c" },
|
||||
{ name = "FreeCAD.conf", text = "", fg = "#f38ba8" },
|
||||
{ name = "compose.yaml", text = "", fg = "#89b4fa" },
|
||||
{ name = "eslint.config.js", text = "", fg = "#585b70" },
|
||||
{ name = "hyprland.conf", text = "", fg = "#74c7ec" },
|
||||
{ name = "docker-compose.yml", text = "", fg = "#89b4fa" },
|
||||
{ name = "groovy", text = "", fg = "#585b70" },
|
||||
{ name = "QtProject.conf", text = "", fg = "#a6e3a1" },
|
||||
{ name = "platformio.ini", text = "", fg = "#fab387" },
|
||||
{ name = "build.gradle", text = "", fg = "#585b70" },
|
||||
{ name = ".nuxtrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "_vimrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = ".zprofile", text = "", fg = "#a6e3a1" },
|
||||
{ name = ".xsession", text = "", fg = "#fab387" },
|
||||
{ name = "prettier.config.js", text = "", fg = "#89b4fa" },
|
||||
{ name = ".babelrc", text = "", fg = "#f9e2af" },
|
||||
{ name = "workspace", text = "", fg = "#a6e3a1" },
|
||||
{ name = ".prettierrc.json", text = "", fg = "#89b4fa" },
|
||||
{ name = ".prettierrc.js", text = "", fg = "#89b4fa" },
|
||||
{ name = ".Xresources", text = "", fg = "#fab387" },
|
||||
{ name = ".gitignore", text = "", fg = "#fab387" },
|
||||
{ name = ".justfile", text = "", fg = "#7f849c" },
|
||||
]
|
||||
exts = [
|
||||
{ name = "otf", text = "", fg = "#f5e0dc" },
|
||||
{ name = "import", text = "", fg = "#f5e0dc" },
|
||||
{ name = "krz", text = "", fg = "#cba6f7" },
|
||||
{ name = "adb", text = "", fg = "#94e2d5" },
|
||||
{ name = "ttf", text = "", fg = "#f5e0dc" },
|
||||
{ name = "webpack", text = "", fg = "#74c7ec" },
|
||||
{ name = "dart", text = "", fg = "#585b70" },
|
||||
{ name = "vsh", text = "", fg = "#7f849c" },
|
||||
{ name = "doc", text = "", fg = "#585b70" },
|
||||
{ name = "zsh", text = "", fg = "#a6e3a1" },
|
||||
{ name = "ex", text = "", fg = "#7f849c" },
|
||||
{ name = "hx", text = "", fg = "#fab387" },
|
||||
{ name = "fodt", text = "", fg = "#74c7ec" },
|
||||
{ name = "mojo", text = "", fg = "#fab387" },
|
||||
{ name = "templ", text = "", fg = "#f9e2af" },
|
||||
{ name = "nix", text = "", fg = "#74c7ec" },
|
||||
{ name = "cshtml", text = "", fg = "#585b70" },
|
||||
{ name = "fish", text = "", fg = "#585b70" },
|
||||
{ name = "ply", text = "", fg = "#7f849c" },
|
||||
{ name = "sldprt", text = "", fg = "#a6e3a1" },
|
||||
{ name = "gemspec", text = "", fg = "#313244" },
|
||||
{ name = "mjs", text = "", fg = "#f9e2af" },
|
||||
{ name = "csh", text = "", fg = "#585b70" },
|
||||
{ name = "cmake", text = "", fg = "#cdd6f4" },
|
||||
{ name = "fodp", text = "", fg = "#fab387" },
|
||||
{ name = "vi", text = "", fg = "#f9e2af" },
|
||||
{ name = "msf", text = "", fg = "#89b4fa" },
|
||||
{ name = "blp", text = "", fg = "#89b4fa" },
|
||||
{ name = "less", text = "", fg = "#45475a" },
|
||||
{ name = "sh", text = "", fg = "#585b70" },
|
||||
{ name = "odg", text = "", fg = "#f9e2af" },
|
||||
{ name = "mint", text = "", fg = "#a6e3a1" },
|
||||
{ name = "dll", text = "", fg = "#11111b" },
|
||||
{ name = "odf", text = "", fg = "#f38ba8" },
|
||||
{ name = "sqlite3", text = "", fg = "#f5e0dc" },
|
||||
{ name = "Dockerfile", text = "", fg = "#89b4fa" },
|
||||
{ name = "ksh", text = "", fg = "#585b70" },
|
||||
{ name = "rmd", text = "", fg = "#74c7ec" },
|
||||
{ name = "wv", text = "", fg = "#74c7ec" },
|
||||
{ name = "xml", text = "", fg = "#fab387" },
|
||||
{ name = "markdown", text = "", fg = "#cdd6f4" },
|
||||
{ name = "qml", text = "", fg = "#a6e3a1" },
|
||||
{ name = "3gp", text = "", fg = "#fab387" },
|
||||
{ name = "pxi", text = "", fg = "#89b4fa" },
|
||||
{ name = "flac", text = "", fg = "#6c7086" },
|
||||
{ name = "gpr", text = "", fg = "#cba6f7" },
|
||||
{ name = "huff", text = "", fg = "#585b70" },
|
||||
{ name = "json", text = "", fg = "#f9e2af" },
|
||||
{ name = "gv", text = "", fg = "#585b70" },
|
||||
{ name = "bmp", text = "", fg = "#7f849c" },
|
||||
{ name = "lock", text = "", fg = "#bac2de" },
|
||||
{ name = "sha384", text = "", fg = "#7f849c" },
|
||||
{ name = "cobol", text = "⚙", fg = "#585b70" },
|
||||
{ name = "cob", text = "⚙", fg = "#585b70" },
|
||||
{ name = "java", text = "", fg = "#f38ba8" },
|
||||
{ name = "cjs", text = "", fg = "#f9e2af" },
|
||||
{ name = "qm", text = "", fg = "#74c7ec" },
|
||||
{ name = "ebuild", text = "", fg = "#45475a" },
|
||||
{ name = "mustache", text = "", fg = "#fab387" },
|
||||
{ name = "terminal", text = "", fg = "#a6e3a1" },
|
||||
{ name = "ejs", text = "", fg = "#f9e2af" },
|
||||
{ name = "brep", text = "", fg = "#a6e3a1" },
|
||||
{ name = "rar", text = "", fg = "#fab387" },
|
||||
{ name = "gradle", text = "", fg = "#585b70" },
|
||||
{ name = "gnumakefile", text = "", fg = "#7f849c" },
|
||||
{ name = "applescript", text = "", fg = "#7f849c" },
|
||||
{ name = "elm", text = "", fg = "#74c7ec" },
|
||||
{ name = "ebook", text = "", fg = "#fab387" },
|
||||
{ name = "kra", text = "", fg = "#cba6f7" },
|
||||
{ name = "tf", text = "", fg = "#585b70" },
|
||||
{ name = "xls", text = "", fg = "#585b70" },
|
||||
{ name = "fnl", text = "", fg = "#f9e2af" },
|
||||
{ name = "kdbx", text = "", fg = "#a6e3a1" },
|
||||
{ name = "kicad_pcb", text = "", fg = "#f5e0dc" },
|
||||
{ name = "cfg", text = "", fg = "#7f849c" },
|
||||
{ name = "ape", text = "", fg = "#74c7ec" },
|
||||
{ name = "org", text = "", fg = "#94e2d5" },
|
||||
{ name = "yml", text = "", fg = "#7f849c" },
|
||||
{ name = "swift", text = "", fg = "#fab387" },
|
||||
{ name = "eln", text = "", fg = "#7f849c" },
|
||||
{ name = "sol", text = "", fg = "#74c7ec" },
|
||||
{ name = "awk", text = "", fg = "#585b70" },
|
||||
{ name = "7z", text = "", fg = "#fab387" },
|
||||
{ name = "apl", text = "⍝", fg = "#fab387" },
|
||||
{ name = "epp", text = "", fg = "#fab387" },
|
||||
{ name = "app", text = "", fg = "#45475a" },
|
||||
{ name = "dot", text = "", fg = "#585b70" },
|
||||
{ name = "kpp", text = "", fg = "#cba6f7" },
|
||||
{ name = "eot", text = "", fg = "#f5e0dc" },
|
||||
{ name = "hpp", text = "", fg = "#7f849c" },
|
||||
{ name = "spec.tsx", text = "", fg = "#585b70" },
|
||||
{ name = "hurl", text = "", fg = "#f38ba8" },
|
||||
{ name = "cxxm", text = "", fg = "#74c7ec" },
|
||||
{ name = "c", text = "", fg = "#89b4fa" },
|
||||
{ name = "fcmacro", text = "", fg = "#f38ba8" },
|
||||
{ name = "sass", text = "", fg = "#f38ba8" },
|
||||
{ name = "yaml", text = "", fg = "#7f849c" },
|
||||
{ name = "xz", text = "", fg = "#fab387" },
|
||||
{ name = "material", text = "", fg = "#f38ba8" },
|
||||
{ name = "json5", text = "", fg = "#f9e2af" },
|
||||
{ name = "signature", text = "λ", fg = "#fab387" },
|
||||
{ name = "3mf", text = "", fg = "#7f849c" },
|
||||
{ name = "jpg", text = "", fg = "#7f849c" },
|
||||
{ name = "xpi", text = "", fg = "#fab387" },
|
||||
{ name = "fcmat", text = "", fg = "#f38ba8" },
|
||||
{ name = "pot", text = "", fg = "#74c7ec" },
|
||||
{ name = "bin", text = "", fg = "#45475a" },
|
||||
{ name = "xlsx", text = "", fg = "#585b70" },
|
||||
{ name = "aac", text = "", fg = "#74c7ec" },
|
||||
{ name = "kicad_sym", text = "", fg = "#f5e0dc" },
|
||||
{ name = "xcstrings", text = "", fg = "#74c7ec" },
|
||||
{ name = "lff", text = "", fg = "#f5e0dc" },
|
||||
{ name = "xcf", text = "", fg = "#585b70" },
|
||||
{ name = "azcli", text = "", fg = "#6c7086" },
|
||||
{ name = "license", text = "", fg = "#f9e2af" },
|
||||
{ name = "jsonc", text = "", fg = "#f9e2af" },
|
||||
{ name = "xaml", text = "", fg = "#585b70" },
|
||||
{ name = "md5", text = "", fg = "#7f849c" },
|
||||
{ name = "xm", text = "", fg = "#74c7ec" },
|
||||
{ name = "sln", text = "", fg = "#6c7086" },
|
||||
{ name = "jl", text = "", fg = "#7f849c" },
|
||||
{ name = "ml", text = "", fg = "#fab387" },
|
||||
{ name = "http", text = "", fg = "#89b4fa" },
|
||||
{ name = "x", text = "", fg = "#89b4fa" },
|
||||
{ name = "wvc", text = "", fg = "#74c7ec" },
|
||||
{ name = "wrz", text = "", fg = "#7f849c" },
|
||||
{ name = "csproj", text = "", fg = "#585b70" },
|
||||
{ name = "wrl", text = "", fg = "#7f849c" },
|
||||
{ name = "wma", text = "", fg = "#74c7ec" },
|
||||
{ name = "woff2", text = "", fg = "#f5e0dc" },
|
||||
{ name = "woff", text = "", fg = "#f5e0dc" },
|
||||
{ name = "tscn", text = "", fg = "#7f849c" },
|
||||
{ name = "webmanifest", text = "", fg = "#f9e2af" },
|
||||
{ name = "webm", text = "", fg = "#fab387" },
|
||||
{ name = "fcbak", text = "", fg = "#f38ba8" },
|
||||
{ name = "log", text = "", fg = "#cdd6f4" },
|
||||
{ name = "wav", text = "", fg = "#74c7ec" },
|
||||
{ name = "wasm", text = "", fg = "#585b70" },
|
||||
{ name = "styl", text = "", fg = "#a6e3a1" },
|
||||
{ name = "gif", text = "", fg = "#7f849c" },
|
||||
{ name = "resi", text = "", fg = "#f38ba8" },
|
||||
{ name = "aiff", text = "", fg = "#74c7ec" },
|
||||
{ name = "sha256", text = "", fg = "#7f849c" },
|
||||
{ name = "igs", text = "", fg = "#a6e3a1" },
|
||||
{ name = "vsix", text = "", fg = "#6c7086" },
|
||||
{ name = "vim", text = "", fg = "#a6e3a1" },
|
||||
{ name = "diff", text = "", fg = "#45475a" },
|
||||
{ name = "drl", text = "", fg = "#eba0ac" },
|
||||
{ name = "erl", text = "", fg = "#f38ba8" },
|
||||
{ name = "vhdl", text = "", fg = "#a6e3a1" },
|
||||
{ name = "🔥", text = "", fg = "#fab387" },
|
||||
{ name = "hrl", text = "", fg = "#f38ba8" },
|
||||
{ name = "fsi", text = "", fg = "#74c7ec" },
|
||||
{ name = "mm", text = "", fg = "#74c7ec" },
|
||||
{ name = "bz", text = "", fg = "#fab387" },
|
||||
{ name = "vh", text = "", fg = "#a6e3a1" },
|
||||
{ name = "kdb", text = "", fg = "#a6e3a1" },
|
||||
{ name = "gz", text = "", fg = "#fab387" },
|
||||
{ name = "cpp", text = "", fg = "#74c7ec" },
|
||||
{ name = "ui", text = "", fg = "#6c7086" },
|
||||
{ name = "txt", text = "", fg = "#a6e3a1" },
|
||||
{ name = "spec.ts", text = "", fg = "#74c7ec" },
|
||||
{ name = "ccm", text = "", fg = "#f38ba8" },
|
||||
{ name = "typoscript", text = "", fg = "#fab387" },
|
||||
{ name = "typ", text = "", fg = "#89dceb" },
|
||||
{ name = "txz", text = "", fg = "#fab387" },
|
||||
{ name = "test.ts", text = "", fg = "#74c7ec" },
|
||||
{ name = "tsx", text = "", fg = "#585b70" },
|
||||
{ name = "mk", text = "", fg = "#7f849c" },
|
||||
{ name = "webp", text = "", fg = "#7f849c" },
|
||||
{ name = "opus", text = "", fg = "#6c7086" },
|
||||
{ name = "bicep", text = "", fg = "#74c7ec" },
|
||||
{ name = "ts", text = "", fg = "#74c7ec" },
|
||||
{ name = "tres", text = "", fg = "#7f849c" },
|
||||
{ name = "torrent", text = "", fg = "#94e2d5" },
|
||||
{ name = "cxx", text = "", fg = "#74c7ec" },
|
||||
{ name = "iso", text = "", fg = "#f2cdcd" },
|
||||
{ name = "ixx", text = "", fg = "#74c7ec" },
|
||||
{ name = "hxx", text = "", fg = "#7f849c" },
|
||||
{ name = "gql", text = "", fg = "#f38ba8" },
|
||||
{ name = "tmux", text = "", fg = "#a6e3a1" },
|
||||
{ name = "ini", text = "", fg = "#7f849c" },
|
||||
{ name = "m3u8", text = "", fg = "#f38ba8" },
|
||||
{ name = "image", text = "", fg = "#f2cdcd" },
|
||||
{ name = "tfvars", text = "", fg = "#585b70" },
|
||||
{ name = "tex", text = "", fg = "#45475a" },
|
||||
{ name = "cbl", text = "⚙", fg = "#585b70" },
|
||||
{ name = "flc", text = "", fg = "#f5e0dc" },
|
||||
{ name = "elc", text = "", fg = "#7f849c" },
|
||||
{ name = "test.tsx", text = "", fg = "#585b70" },
|
||||
{ name = "twig", text = "", fg = "#a6e3a1" },
|
||||
{ name = "sql", text = "", fg = "#f5e0dc" },
|
||||
{ name = "test.jsx", text = "", fg = "#74c7ec" },
|
||||
{ name = "htm", text = "", fg = "#fab387" },
|
||||
{ name = "gcode", text = "", fg = "#6c7086" },
|
||||
{ name = "test.js", text = "", fg = "#f9e2af" },
|
||||
{ name = "ino", text = "", fg = "#74c7ec" },
|
||||
{ name = "tcl", text = "", fg = "#585b70" },
|
||||
{ name = "cljs", text = "", fg = "#74c7ec" },
|
||||
{ name = "tsconfig", text = "", fg = "#fab387" },
|
||||
{ name = "img", text = "", fg = "#f2cdcd" },
|
||||
{ name = "t", text = "", fg = "#74c7ec" },
|
||||
{ name = "fcstd1", text = "", fg = "#f38ba8" },
|
||||
{ name = "out", text = "", fg = "#45475a" },
|
||||
{ name = "jsx", text = "", fg = "#74c7ec" },
|
||||
{ name = "bash", text = "", fg = "#a6e3a1" },
|
||||
{ name = "edn", text = "", fg = "#74c7ec" },
|
||||
{ name = "rss", text = "", fg = "#fab387" },
|
||||
{ name = "flf", text = "", fg = "#f5e0dc" },
|
||||
{ name = "cache", text = "", fg = "#f5e0dc" },
|
||||
{ name = "sbt", text = "", fg = "#f38ba8" },
|
||||
{ name = "cppm", text = "", fg = "#74c7ec" },
|
||||
{ name = "svelte", text = "", fg = "#fab387" },
|
||||
{ name = "mo", text = "∞", fg = "#7f849c" },
|
||||
{ name = "sv", text = "", fg = "#a6e3a1" },
|
||||
{ name = "ko", text = "", fg = "#f5e0dc" },
|
||||
{ name = "suo", text = "", fg = "#6c7086" },
|
||||
{ name = "sldasm", text = "", fg = "#a6e3a1" },
|
||||
{ name = "icalendar", text = "", fg = "#313244" },
|
||||
{ name = "go", text = "", fg = "#74c7ec" },
|
||||
{ name = "sublime", text = "", fg = "#fab387" },
|
||||
{ name = "stl", text = "", fg = "#7f849c" },
|
||||
{ name = "mobi", text = "", fg = "#fab387" },
|
||||
{ name = "graphql", text = "", fg = "#f38ba8" },
|
||||
{ name = "m3u", text = "", fg = "#f38ba8" },
|
||||
{ name = "cpy", text = "⚙", fg = "#585b70" },
|
||||
{ name = "kdenlive", text = "", fg = "#89b4fa" },
|
||||
{ name = "pyo", text = "", fg = "#f9e2af" },
|
||||
{ name = "po", text = "", fg = "#74c7ec" },
|
||||
{ name = "scala", text = "", fg = "#f38ba8" },
|
||||
{ name = "exs", text = "", fg = "#7f849c" },
|
||||
{ name = "odp", text = "", fg = "#fab387" },
|
||||
{ name = "dump", text = "", fg = "#f5e0dc" },
|
||||
{ name = "stp", text = "", fg = "#a6e3a1" },
|
||||
{ name = "step", text = "", fg = "#a6e3a1" },
|
||||
{ name = "ste", text = "", fg = "#a6e3a1" },
|
||||
{ name = "aif", text = "", fg = "#74c7ec" },
|
||||
{ name = "strings", text = "", fg = "#74c7ec" },
|
||||
{ name = "cp", text = "", fg = "#74c7ec" },
|
||||
{ name = "fsscript", text = "", fg = "#74c7ec" },
|
||||
{ name = "mli", text = "", fg = "#fab387" },
|
||||
{ name = "bak", text = "", fg = "#7f849c" },
|
||||
{ name = "ssa", text = "", fg = "#f9e2af" },
|
||||
{ name = "toml", text = "", fg = "#585b70" },
|
||||
{ name = "makefile", text = "", fg = "#7f849c" },
|
||||
{ name = "php", text = "", fg = "#7f849c" },
|
||||
{ name = "zst", text = "", fg = "#fab387" },
|
||||
{ name = "spec.jsx", text = "", fg = "#74c7ec" },
|
||||
{ name = "kbx", text = "", fg = "#6c7086" },
|
||||
{ name = "fbx", text = "", fg = "#7f849c" },
|
||||
{ name = "blend", text = "", fg = "#fab387" },
|
||||
{ name = "ifc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "spec.js", text = "", fg = "#f9e2af" },
|
||||
{ name = "so", text = "", fg = "#f5e0dc" },
|
||||
{ name = "desktop", text = "", fg = "#45475a" },
|
||||
{ name = "sml", text = "λ", fg = "#fab387" },
|
||||
{ name = "slvs", text = "", fg = "#a6e3a1" },
|
||||
{ name = "pp", text = "", fg = "#fab387" },
|
||||
{ name = "ps1", text = "", fg = "#6c7086" },
|
||||
{ name = "dropbox", text = "", fg = "#6c7086" },
|
||||
{ name = "kicad_mod", text = "", fg = "#f5e0dc" },
|
||||
{ name = "bat", text = "", fg = "#a6e3a1" },
|
||||
{ name = "slim", text = "", fg = "#fab387" },
|
||||
{ name = "skp", text = "", fg = "#a6e3a1" },
|
||||
{ name = "css", text = "", fg = "#89b4fa" },
|
||||
{ name = "xul", text = "", fg = "#fab387" },
|
||||
{ name = "ige", text = "", fg = "#a6e3a1" },
|
||||
{ name = "glb", text = "", fg = "#fab387" },
|
||||
{ name = "ppt", text = "", fg = "#f38ba8" },
|
||||
{ name = "sha512", text = "", fg = "#7f849c" },
|
||||
{ name = "ics", text = "", fg = "#313244" },
|
||||
{ name = "mdx", text = "", fg = "#74c7ec" },
|
||||
{ name = "sha1", text = "", fg = "#7f849c" },
|
||||
{ name = "f3d", text = "", fg = "#a6e3a1" },
|
||||
{ name = "ass", text = "", fg = "#f9e2af" },
|
||||
{ name = "godot", text = "", fg = "#7f849c" },
|
||||
{ name = "ifb", text = "", fg = "#313244" },
|
||||
{ name = "cson", text = "", fg = "#f9e2af" },
|
||||
{ name = "lib", text = "", fg = "#11111b" },
|
||||
{ name = "luac", text = "", fg = "#74c7ec" },
|
||||
{ name = "heex", text = "", fg = "#7f849c" },
|
||||
{ name = "scm", text = "", fg = "#f5e0dc" },
|
||||
{ name = "psd1", text = "", fg = "#7f849c" },
|
||||
{ name = "sc", text = "", fg = "#f38ba8" },
|
||||
{ name = "scad", text = "", fg = "#f9e2af" },
|
||||
{ name = "kts", text = "", fg = "#6c7086" },
|
||||
{ name = "svh", text = "", fg = "#a6e3a1" },
|
||||
{ name = "mts", text = "", fg = "#74c7ec" },
|
||||
{ name = "nfo", text = "", fg = "#f9e2af" },
|
||||
{ name = "pck", text = "", fg = "#7f849c" },
|
||||
{ name = "rproj", text = "", fg = "#a6e3a1" },
|
||||
{ name = "rlib", text = "", fg = "#fab387" },
|
||||
{ name = "cljd", text = "", fg = "#74c7ec" },
|
||||
{ name = "ods", text = "", fg = "#a6e3a1" },
|
||||
{ name = "res", text = "", fg = "#f38ba8" },
|
||||
{ name = "apk", text = "", fg = "#a6e3a1" },
|
||||
{ name = "haml", text = "", fg = "#f5e0dc" },
|
||||
{ name = "d.ts", text = "", fg = "#fab387" },
|
||||
{ name = "razor", text = "", fg = "#585b70" },
|
||||
{ name = "rake", text = "", fg = "#313244" },
|
||||
{ name = "patch", text = "", fg = "#45475a" },
|
||||
{ name = "cuh", text = "", fg = "#7f849c" },
|
||||
{ name = "d", text = "", fg = "#f38ba8" },
|
||||
{ name = "query", text = "", fg = "#a6e3a1" },
|
||||
{ name = "psb", text = "", fg = "#74c7ec" },
|
||||
{ name = "nu", text = ">", fg = "#a6e3a1" },
|
||||
{ name = "mov", text = "", fg = "#fab387" },
|
||||
{ name = "lrc", text = "", fg = "#f9e2af" },
|
||||
{ name = "pyx", text = "", fg = "#89b4fa" },
|
||||
{ name = "pyw", text = "", fg = "#89b4fa" },
|
||||
{ name = "cu", text = "", fg = "#a6e3a1" },
|
||||
{ name = "bazel", text = "", fg = "#a6e3a1" },
|
||||
{ name = "obj", text = "", fg = "#7f849c" },
|
||||
{ name = "pyi", text = "", fg = "#f9e2af" },
|
||||
{ name = "pyd", text = "", fg = "#f9e2af" },
|
||||
{ name = "exe", text = "", fg = "#45475a" },
|
||||
{ name = "pyc", text = "", fg = "#f9e2af" },
|
||||
{ name = "fctb", text = "", fg = "#f38ba8" },
|
||||
{ name = "part", text = "", fg = "#94e2d5" },
|
||||
{ name = "blade.php", text = "", fg = "#f38ba8" },
|
||||
{ name = "git", text = "", fg = "#fab387" },
|
||||
{ name = "psd", text = "", fg = "#74c7ec" },
|
||||
{ name = "qss", text = "", fg = "#a6e3a1" },
|
||||
{ name = "csv", text = "", fg = "#a6e3a1" },
|
||||
{ name = "psm1", text = "", fg = "#7f849c" },
|
||||
{ name = "dconf", text = "", fg = "#f5e0dc" },
|
||||
{ name = "config.ru", text = "", fg = "#313244" },
|
||||
{ name = "prisma", text = "", fg = "#6c7086" },
|
||||
{ name = "conf", text = "", fg = "#7f849c" },
|
||||
{ name = "clj", text = "", fg = "#a6e3a1" },
|
||||
{ name = "o", text = "", fg = "#45475a" },
|
||||
{ name = "mp4", text = "", fg = "#fab387" },
|
||||
{ name = "cc", text = "", fg = "#f38ba8" },
|
||||
{ name = "kicad_prl", text = "", fg = "#f5e0dc" },
|
||||
{ name = "bz3", text = "", fg = "#fab387" },
|
||||
{ name = "asc", text = "", fg = "#6c7086" },
|
||||
{ name = "png", text = "", fg = "#7f849c" },
|
||||
{ name = "android", text = "", fg = "#a6e3a1" },
|
||||
{ name = "pm", text = "", fg = "#74c7ec" },
|
||||
{ name = "h", text = "", fg = "#7f849c" },
|
||||
{ name = "pls", text = "", fg = "#f38ba8" },
|
||||
{ name = "ipynb", text = "", fg = "#fab387" },
|
||||
{ name = "pl", text = "", fg = "#74c7ec" },
|
||||
{ name = "ads", text = "", fg = "#f5e0dc" },
|
||||
{ name = "sqlite", text = "", fg = "#f5e0dc" },
|
||||
{ name = "pdf", text = "", fg = "#585b70" },
|
||||
{ name = "pcm", text = "", fg = "#6c7086" },
|
||||
{ name = "ico", text = "", fg = "#f9e2af" },
|
||||
{ name = "a", text = "", fg = "#f5e0dc" },
|
||||
{ name = "R", text = "", fg = "#6c7086" },
|
||||
{ name = "ogg", text = "", fg = "#6c7086" },
|
||||
{ name = "pxd", text = "", fg = "#89b4fa" },
|
||||
{ name = "kdenlivetitle", text = "", fg = "#89b4fa" },
|
||||
{ name = "jxl", text = "", fg = "#7f849c" },
|
||||
{ name = "nswag", text = "", fg = "#a6e3a1" },
|
||||
{ name = "nim", text = "", fg = "#f9e2af" },
|
||||
{ name = "bqn", text = "⎉", fg = "#6c7086" },
|
||||
{ name = "cts", text = "", fg = "#74c7ec" },
|
||||
{ name = "fcparam", text = "", fg = "#f38ba8" },
|
||||
{ name = "rs", text = "", fg = "#fab387" },
|
||||
{ name = "mpp", text = "", fg = "#74c7ec" },
|
||||
{ name = "fdmdownload", text = "", fg = "#94e2d5" },
|
||||
{ name = "pptx", text = "", fg = "#f38ba8" },
|
||||
{ name = "jpeg", text = "", fg = "#7f849c" },
|
||||
{ name = "bib", text = "", fg = "#f9e2af" },
|
||||
{ name = "vhd", text = "", fg = "#a6e3a1" },
|
||||
{ name = "m", text = "", fg = "#89b4fa" },
|
||||
{ name = "js", text = "", fg = "#f9e2af" },
|
||||
{ name = "eex", text = "", fg = "#7f849c" },
|
||||
{ name = "tbc", text = "", fg = "#585b70" },
|
||||
{ name = "astro", text = "", fg = "#f38ba8" },
|
||||
{ name = "sha224", text = "", fg = "#7f849c" },
|
||||
{ name = "xcplayground", text = "", fg = "#fab387" },
|
||||
{ name = "el", text = "", fg = "#7f849c" },
|
||||
{ name = "m4v", text = "", fg = "#fab387" },
|
||||
{ name = "m4a", text = "", fg = "#74c7ec" },
|
||||
{ name = "cs", text = "", fg = "#585b70" },
|
||||
{ name = "hs", text = "", fg = "#7f849c" },
|
||||
{ name = "tgz", text = "", fg = "#fab387" },
|
||||
{ name = "fs", text = "", fg = "#74c7ec" },
|
||||
{ name = "luau", text = "", fg = "#89b4fa" },
|
||||
{ name = "dxf", text = "", fg = "#a6e3a1" },
|
||||
{ name = "download", text = "", fg = "#94e2d5" },
|
||||
{ name = "cast", text = "", fg = "#fab387" },
|
||||
{ name = "qrc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "lua", text = "", fg = "#74c7ec" },
|
||||
{ name = "lhs", text = "", fg = "#7f849c" },
|
||||
{ name = "md", text = "", fg = "#cdd6f4" },
|
||||
{ name = "leex", text = "", fg = "#7f849c" },
|
||||
{ name = "ai", text = "", fg = "#f9e2af" },
|
||||
{ name = "lck", text = "", fg = "#bac2de" },
|
||||
{ name = "kt", text = "", fg = "#6c7086" },
|
||||
{ name = "bicepparam", text = "", fg = "#7f849c" },
|
||||
{ name = "hex", text = "", fg = "#6c7086" },
|
||||
{ name = "zig", text = "", fg = "#fab387" },
|
||||
{ name = "bzl", text = "", fg = "#a6e3a1" },
|
||||
{ name = "cljc", text = "", fg = "#a6e3a1" },
|
||||
{ name = "kicad_dru", text = "", fg = "#f5e0dc" },
|
||||
{ name = "fctl", text = "", fg = "#f38ba8" },
|
||||
{ name = "f#", text = "", fg = "#74c7ec" },
|
||||
{ name = "odt", text = "", fg = "#74c7ec" },
|
||||
{ name = "conda", text = "", fg = "#a6e3a1" },
|
||||
{ name = "vala", text = "", fg = "#585b70" },
|
||||
{ name = "erb", text = "", fg = "#313244" },
|
||||
{ name = "mp3", text = "", fg = "#74c7ec" },
|
||||
{ name = "bz2", text = "", fg = "#fab387" },
|
||||
{ name = "coffee", text = "", fg = "#f9e2af" },
|
||||
{ name = "cr", text = "", fg = "#f5e0dc" },
|
||||
{ name = "f90", text = "", fg = "#585b70" },
|
||||
{ name = "jwmrc", text = "", fg = "#6c7086" },
|
||||
{ name = "c++", text = "", fg = "#f38ba8" },
|
||||
{ name = "fcscript", text = "", fg = "#f38ba8" },
|
||||
{ name = "fods", text = "", fg = "#a6e3a1" },
|
||||
{ name = "cue", text = "", fg = "#f38ba8" },
|
||||
{ name = "srt", text = "", fg = "#f9e2af" },
|
||||
{ name = "info", text = "", fg = "#f9e2af" },
|
||||
{ name = "hh", text = "", fg = "#7f849c" },
|
||||
{ name = "sig", text = "λ", fg = "#fab387" },
|
||||
{ name = "html", text = "", fg = "#fab387" },
|
||||
{ name = "iges", text = "", fg = "#a6e3a1" },
|
||||
{ name = "kicad_wks", text = "", fg = "#f5e0dc" },
|
||||
{ name = "hbs", text = "", fg = "#fab387" },
|
||||
{ name = "fcstd", text = "", fg = "#f38ba8" },
|
||||
{ name = "gresource", text = "", fg = "#f5e0dc" },
|
||||
{ name = "sub", text = "", fg = "#f9e2af" },
|
||||
{ name = "ical", text = "", fg = "#313244" },
|
||||
{ name = "crdownload", text = "", fg = "#94e2d5" },
|
||||
{ name = "pub", text = "", fg = "#f9e2af" },
|
||||
{ name = "vue", text = "", fg = "#a6e3a1" },
|
||||
{ name = "gd", text = "", fg = "#7f849c" },
|
||||
{ name = "fsx", text = "", fg = "#74c7ec" },
|
||||
{ name = "mkv", text = "", fg = "#fab387" },
|
||||
{ name = "py", text = "", fg = "#f9e2af" },
|
||||
{ name = "kicad_sch", text = "", fg = "#f5e0dc" },
|
||||
{ name = "epub", text = "", fg = "#fab387" },
|
||||
{ name = "env", text = "", fg = "#f9e2af" },
|
||||
{ name = "magnet", text = "", fg = "#45475a" },
|
||||
{ name = "elf", text = "", fg = "#45475a" },
|
||||
{ name = "fodg", text = "", fg = "#f9e2af" },
|
||||
{ name = "svg", text = "", fg = "#fab387" },
|
||||
{ name = "dwg", text = "", fg = "#a6e3a1" },
|
||||
{ name = "docx", text = "", fg = "#585b70" },
|
||||
{ name = "pro", text = "", fg = "#f9e2af" },
|
||||
{ name = "db", text = "", fg = "#f5e0dc" },
|
||||
{ name = "rb", text = "", fg = "#313244" },
|
||||
{ name = "r", text = "", fg = "#6c7086" },
|
||||
{ name = "scss", text = "", fg = "#f38ba8" },
|
||||
{ name = "cow", text = "", fg = "#fab387" },
|
||||
{ name = "gleam", text = "", fg = "#f5c2e7" },
|
||||
{ name = "v", text = "", fg = "#a6e3a1" },
|
||||
{ name = "kicad_pro", text = "", fg = "#f5e0dc" },
|
||||
{ name = "liquid", text = "", fg = "#a6e3a1" },
|
||||
{ name = "zip", text = "", fg = "#fab387" },
|
||||
]
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
-- ~/.config/yazi/init.lua
|
||||
function Linemode:size_and_mtime()
|
||||
local time = math.floor(self._file.cha.mtime or 0)
|
||||
if time == 0 then
|
||||
time = ""
|
||||
elseif os.date("%Y", time) == os.date("%Y") then
|
||||
time = os.date("%b %d %H:%M", time)
|
||||
else
|
||||
time = os.date("%b %d %Y", time)
|
||||
end
|
||||
|
||||
local size = self._file:size()
|
||||
return string.format("%s %s", size and ya.readable_size(size) or "-", time)
|
||||
end
|
||||
|
||||
-- require("dual-pane"):setup({ enabled = true })
|
||||
require("starship"):setup()
|
||||
require("yaziline"):setup()
|
||||
|
|
@ -1,70 +0,0 @@
|
|||
# A TOML linter such as https://taplo.tamasfe.dev/ can use this schema to validate your config.
|
||||
# If you encounter any issues, please make an issue at https://github.com/yazi-rs/schemas.
|
||||
"$schema" = "https://yazi-rs.github.io/schemas/prepend_keymap.json"
|
||||
|
||||
[mgr]
|
||||
|
||||
prepend_keymap = [
|
||||
|
||||
# Hopping
|
||||
{ on = "e", run = "arrow -1", desc = "Move cursor up" },
|
||||
{ on = "n", run = "arrow 1", desc = "Move cursor down" },
|
||||
{ on = "i", run = "enter", desc = "Enter the child directory" },
|
||||
{ on = "I", run = "forward", desc = "Go forward to the next directory" },
|
||||
|
||||
# Seeking
|
||||
{ on = "E", run = "seek -5", desc = "Seek up 5 units in the preview" },
|
||||
{ on = "N", run = "seek 5", desc = "Seek down 5 units in the preview" },
|
||||
|
||||
# Find
|
||||
{ on = "k", run = "find_arrow", desc = "Go to the next found" },
|
||||
{ on = "K", run = "find_arrow --previous", desc = "Go to the previous found" },
|
||||
{ on = ["g", "p"], run = "cd ~/Pictures", desc = "Go ~/Pictures/"}
|
||||
|
||||
|
||||
]
|
||||
|
||||
[tasks]
|
||||
|
||||
prepend_keymap = [
|
||||
{ on = "e", run = "arrow -1", desc = "Move cursor up" },
|
||||
{ on = "n", run = "arrow 1", desc = "Move cursor down" },
|
||||
]
|
||||
|
||||
[select]
|
||||
|
||||
prepend_keymap = [
|
||||
{ on = "e", run = "arrow -1", desc = "Move cursor up" },
|
||||
{ on = "n", run = "arrow 1", desc = "Move cursor down" },
|
||||
]
|
||||
|
||||
[input]
|
||||
|
||||
prepend_keymap = [
|
||||
# Mode
|
||||
{ on = "l", run = "insert", desc = "Enter insert mode" },
|
||||
{ on = "L", run = [ "move -999", "insert" ], desc = "Move to the BOL, and enter insert mode" },
|
||||
{ on = "i", run = "move 1", desc = "Move forward a character" },
|
||||
{ on = "j", run = "forward --end-of-word", desc = "Move forward to the end of the current or next word" },
|
||||
]
|
||||
|
||||
[confirm]
|
||||
prepend_keymap = [
|
||||
{ on = "N", run = "close", desc = "Cancel the confirm" },
|
||||
|
||||
{ on = "e", run = "arrow -1", desc = "Move cursor up" },
|
||||
{ on = "n", run = "arrow 1", desc = "Move cursor down" },
|
||||
]
|
||||
|
||||
[completion]
|
||||
|
||||
prepend_keymap = [
|
||||
]
|
||||
|
||||
[help]
|
||||
|
||||
prepend_keymap = [
|
||||
# Navigation
|
||||
{ on = "e", run = "arrow -1", desc = "Move cursor up" },
|
||||
{ on = "n", run = "arrow 1", desc = "Move cursor down" },
|
||||
]
|
||||
|
|
@ -1,756 +0,0 @@
|
|||
[mgr]
|
||||
cwd = { fg = "#179299" }
|
||||
|
||||
hovered = { fg = "#eff1f5", bg = "#7287fd" }
|
||||
preview_hovered = { fg = "#eff1f5", bg = "#4c4f69" }
|
||||
|
||||
find_keyword = { fg = "#df8e1d", italic = true }
|
||||
find_position = { fg = "#ea76cb", bg = "reset", italic = true }
|
||||
|
||||
marker_copied = { fg = "#40a02b", bg = "#40a02b" }
|
||||
marker_cut = { fg = "#d20f39", bg = "#d20f39" }
|
||||
marker_marked = { fg = "#179299", bg = "#179299" }
|
||||
marker_selected = { fg = "#7287fd", bg = "#7287fd" }
|
||||
|
||||
tab_active = { fg = "#eff1f5", bg = "#4c4f69" }
|
||||
tab_inactive = { fg = "#4c4f69", bg = "#bcc0cc" }
|
||||
tab_width = 1
|
||||
|
||||
count_copied = { fg = "#eff1f5", bg = "#40a02b" }
|
||||
count_cut = { fg = "#eff1f5", bg = "#d20f39" }
|
||||
count_selected = { fg = "#eff1f5", bg = "#7287fd" }
|
||||
|
||||
border_symbol = "│"
|
||||
border_style = { fg = "#8c8fa1" }
|
||||
|
||||
syntect_theme = "~/.config/yazi/Catppuccin-latte.tmTheme"
|
||||
|
||||
[mode]
|
||||
normal_main = { fg = "#eff1f5", bg = "#7287fd", bold = true }
|
||||
normal_alt = { fg = "#7287fd", bg = "#ccd0da"}
|
||||
|
||||
select_main = { fg = "#eff1f5", bg = "#40a02b", bold = true }
|
||||
select_alt = { fg = "#40a02b", bg = "#ccd0da"}
|
||||
|
||||
unset_main = { fg = "#eff1f5", bg = "#dd7878", bold = true }
|
||||
unset_alt = { fg = "#dd7878", bg = "#ccd0da"}
|
||||
|
||||
[status]
|
||||
separator_open = ""
|
||||
separator_close = ""
|
||||
|
||||
progress_label = { fg = "#ffffff", bold = true }
|
||||
progress_normal = { fg = "#1e66f5", bg = "#bcc0cc" }
|
||||
progress_error = { fg = "#d20f39", bg = "#bcc0cc" }
|
||||
|
||||
perm_type = { fg = "#1e66f5" }
|
||||
perm_read = { fg = "#df8e1d" }
|
||||
perm_write = { fg = "#d20f39" }
|
||||
perm_exec = { fg = "#40a02b" }
|
||||
perm_sep = { fg = "#8c8fa1" }
|
||||
|
||||
[input]
|
||||
border = { fg = "#7287fd" }
|
||||
title = {}
|
||||
value = {}
|
||||
selected = { reversed = true }
|
||||
|
||||
[pick]
|
||||
border = { fg = "#7287fd" }
|
||||
active = { fg = "#ea76cb" }
|
||||
inactive = {}
|
||||
|
||||
[confirm]
|
||||
border = { fg = "#7287fd" }
|
||||
title = { fg = "#7287fd" }
|
||||
content = {}
|
||||
list = {}
|
||||
btn_yes = { reversed = true }
|
||||
btn_no = {}
|
||||
|
||||
[cmp]
|
||||
border = { fg = "#7287fd" }
|
||||
|
||||
[tasks]
|
||||
border = { fg = "#7287fd" }
|
||||
title = {}
|
||||
hovered = { underline = true }
|
||||
|
||||
[which]
|
||||
mask = { bg = "#ccd0da" }
|
||||
cand = { fg = "#179299" }
|
||||
rest = { fg = "#7c7f93" }
|
||||
desc = { fg = "#ea76cb" }
|
||||
separator = " "
|
||||
separator_style = { fg = "#acb0be" }
|
||||
|
||||
[help]
|
||||
on = { fg = "#179299" }
|
||||
run = { fg = "#ea76cb" }
|
||||
desc = { fg = "#7c7f93" }
|
||||
hovered = { bg = "#acb0be", bold = true }
|
||||
footer = { fg = "#4c4f69", bg = "#bcc0cc" }
|
||||
|
||||
[notify]
|
||||
title_info = { fg = "#179299" }
|
||||
title_warn = { fg = "#df8e1d" }
|
||||
title_error = { fg = "#d20f39" }
|
||||
|
||||
[filetype]
|
||||
rules = [
|
||||
# Media
|
||||
{ mime = "image/*", fg = "#179299" },
|
||||
{ mime = "{audio,video}/*", fg = "#df8e1d" },
|
||||
|
||||
# Archives
|
||||
{ mime = "application/*zip", fg = "#ea76cb" },
|
||||
{ mime = "application/x-{tar,bzip*,7z-compressed,xz,rar}", fg = "#ea76cb" },
|
||||
|
||||
# Documents
|
||||
{ mime = "application/{pdf,doc,rtf}", fg = "#40a02b" },
|
||||
|
||||
# Fallback
|
||||
{ name = "*", fg = "#4c4f69" },
|
||||
{ name = "*/", fg = "#7287fd" }
|
||||
]
|
||||
|
||||
[spot]
|
||||
border = { fg = "#7287fd" }
|
||||
title = { fg = "#7287fd" }
|
||||
tbl_cell = { fg = "#7287fd", reversed = true }
|
||||
tbl_col = { bold = true }
|
||||
|
||||
[icon]
|
||||
files = [
|
||||
{ name = "kritadisplayrc", text = "", fg = "#ea76cb" },
|
||||
{ name = ".gtkrc-2.0", text = "", fg = "#eff1f5" },
|
||||
{ name = "bspwmrc", text = "", fg = "#4c4f69" },
|
||||
{ name = "webpack", text = "", fg = "#209fb5" },
|
||||
{ name = "tsconfig.json", text = "", fg = "#209fb5" },
|
||||
{ name = ".vimrc", text = "", fg = "#40a02b" },
|
||||
{ name = "gemfile$", text = "", fg = "#d20f39" },
|
||||
{ name = "xmobarrc", text = "", fg = "#e64553" },
|
||||
{ name = "avif", text = "", fg = "#7c7f93" },
|
||||
{ name = "fp-info-cache", text = "", fg = "#eff1f5" },
|
||||
{ name = ".zshrc", text = "", fg = "#40a02b" },
|
||||
{ name = "robots.txt", text = "", fg = "#6c6f85" },
|
||||
{ name = "dockerfile", text = "", fg = "#7287fd" },
|
||||
{ name = ".git-blame-ignore-revs", text = "", fg = "#fe640b" },
|
||||
{ name = ".nvmrc", text = "", fg = "#40a02b" },
|
||||
{ name = "hyprpaper.conf", text = "", fg = "#209fb5" },
|
||||
{ name = ".prettierignore", text = "", fg = "#7287fd" },
|
||||
{ name = "rakefile", text = "", fg = "#d20f39" },
|
||||
{ name = "code_of_conduct", text = "", fg = "#e64553" },
|
||||
{ name = "cmakelists.txt", text = "", fg = "#dce0e8" },
|
||||
{ name = ".env", text = "", fg = "#df8e1d" },
|
||||
{ name = "copying.lesser", text = "", fg = "#40a02b" },
|
||||
{ name = "readme", text = "", fg = "#eff1f5" },
|
||||
{ name = "settings.gradle", text = "", fg = "#1e66f5" },
|
||||
{ name = "gruntfile.coffee", text = "", fg = "#fe640b" },
|
||||
{ name = ".eslintignore", text = "", fg = "#8839ef" },
|
||||
{ name = "kalgebrarc", text = "", fg = "#04a5e5" },
|
||||
{ name = "kdenliverc", text = "", fg = "#04a5e5" },
|
||||
{ name = ".prettierrc.cjs", text = "", fg = "#7287fd" },
|
||||
{ name = "cantorrc", text = "", fg = "#04a5e5" },
|
||||
{ name = "rmd", text = "", fg = "#209fb5" },
|
||||
{ name = "vagrantfile$", text = "", fg = "#1e66f5" },
|
||||
{ name = ".Xauthority", text = "", fg = "#fe640b" },
|
||||
{ name = "prettier.config.ts", text = "", fg = "#7287fd" },
|
||||
{ name = "node_modules", text = "", fg = "#e64553" },
|
||||
{ name = ".prettierrc.toml", text = "", fg = "#7287fd" },
|
||||
{ name = "build.zig.zon", text = "", fg = "#df8e1d" },
|
||||
{ name = ".ds_store", text = "", fg = "#4c4f69" },
|
||||
{ name = "PKGBUILD", text = "", fg = "#04a5e5" },
|
||||
{ name = ".prettierrc", text = "", fg = "#7287fd" },
|
||||
{ name = ".bash_profile", text = "", fg = "#40a02b" },
|
||||
{ name = ".npmignore", text = "", fg = "#e64553" },
|
||||
{ name = ".mailmap", text = "", fg = "#fe640b" },
|
||||
{ name = ".codespellrc", text = "", fg = "#40a02b" },
|
||||
{ name = "svelte.config.js", text = "", fg = "#fe640b" },
|
||||
{ name = "eslint.config.ts", text = "", fg = "#8839ef" },
|
||||
{ name = "config", text = "", fg = "#7c7f93" },
|
||||
{ name = ".gitlab-ci.yml", text = "", fg = "#e64553" },
|
||||
{ name = ".gitconfig", text = "", fg = "#fe640b" },
|
||||
{ name = "_gvimrc", text = "", fg = "#40a02b" },
|
||||
{ name = ".xinitrc", text = "", fg = "#fe640b" },
|
||||
{ name = "checkhealth", text = "", fg = "#04a5e5" },
|
||||
{ name = "sxhkdrc", text = "", fg = "#4c4f69" },
|
||||
{ name = ".bashrc", text = "", fg = "#40a02b" },
|
||||
{ name = "tailwind.config.mjs", text = "", fg = "#209fb5" },
|
||||
{ name = "ext_typoscript_setup.txt", text = "", fg = "#df8e1d" },
|
||||
{ name = "commitlint.config.ts", text = "", fg = "#179299" },
|
||||
{ name = "py.typed", text = "", fg = "#df8e1d" },
|
||||
{ name = ".nanorc", text = "", fg = "#4c4f69" },
|
||||
{ name = "commit_editmsg", text = "", fg = "#fe640b" },
|
||||
{ name = ".luaurc", text = "", fg = "#04a5e5" },
|
||||
{ name = "fp-lib-table", text = "", fg = "#eff1f5" },
|
||||
{ name = ".editorconfig", text = "", fg = "#eff1f5" },
|
||||
{ name = "justfile", text = "", fg = "#7c7f93" },
|
||||
{ name = "kdeglobals", text = "", fg = "#04a5e5" },
|
||||
{ name = "license.md", text = "", fg = "#df8e1d" },
|
||||
{ name = ".clang-format", text = "", fg = "#7c7f93" },
|
||||
{ name = "docker-compose.yaml", text = "", fg = "#7287fd" },
|
||||
{ name = "copying", text = "", fg = "#40a02b" },
|
||||
{ name = "go.mod", text = "", fg = "#209fb5" },
|
||||
{ name = "lxqt.conf", text = "", fg = "#04a5e5" },
|
||||
{ name = "brewfile", text = "", fg = "#d20f39" },
|
||||
{ name = "gulpfile.coffee", text = "", fg = "#d20f39" },
|
||||
{ name = ".dockerignore", text = "", fg = "#7287fd" },
|
||||
{ name = ".settings.json", text = "", fg = "#8839ef" },
|
||||
{ name = "tailwind.config.js", text = "", fg = "#209fb5" },
|
||||
{ name = ".clang-tidy", text = "", fg = "#7c7f93" },
|
||||
{ name = ".gvimrc", text = "", fg = "#40a02b" },
|
||||
{ name = "nuxt.config.cjs", text = "", fg = "#40a02b" },
|
||||
{ name = "xsettingsd.conf", text = "", fg = "#fe640b" },
|
||||
{ name = "nuxt.config.js", text = "", fg = "#40a02b" },
|
||||
{ name = "eslint.config.cjs", text = "", fg = "#8839ef" },
|
||||
{ name = "sym-lib-table", text = "", fg = "#eff1f5" },
|
||||
{ name = ".condarc", text = "", fg = "#40a02b" },
|
||||
{ name = "xmonad.hs", text = "", fg = "#e64553" },
|
||||
{ name = "tmux.conf", text = "", fg = "#40a02b" },
|
||||
{ name = "xmobarrc.hs", text = "", fg = "#e64553" },
|
||||
{ name = ".prettierrc.yaml", text = "", fg = "#7287fd" },
|
||||
{ name = ".pre-commit-config.yaml", text = "", fg = "#df8e1d" },
|
||||
{ name = "i3blocks.conf", text = "", fg = "#e6e9ef" },
|
||||
{ name = "xorg.conf", text = "", fg = "#fe640b" },
|
||||
{ name = ".zshenv", text = "", fg = "#40a02b" },
|
||||
{ name = "vlcrc", text = "", fg = "#fe640b" },
|
||||
{ name = "license", text = "", fg = "#df8e1d" },
|
||||
{ name = "unlicense", text = "", fg = "#df8e1d" },
|
||||
{ name = "tmux.conf.local", text = "", fg = "#40a02b" },
|
||||
{ name = ".SRCINFO", text = "", fg = "#04a5e5" },
|
||||
{ name = "tailwind.config.ts", text = "", fg = "#209fb5" },
|
||||
{ name = "security.md", text = "", fg = "#bcc0cc" },
|
||||
{ name = "security", text = "", fg = "#bcc0cc" },
|
||||
{ name = ".eslintrc", text = "", fg = "#8839ef" },
|
||||
{ name = "gradle.properties", text = "", fg = "#1e66f5" },
|
||||
{ name = "code_of_conduct.md", text = "", fg = "#e64553" },
|
||||
{ name = "PrusaSlicerGcodeViewer.ini", text = "", fg = "#fe640b" },
|
||||
{ name = "PrusaSlicer.ini", text = "", fg = "#fe640b" },
|
||||
{ name = "procfile", text = "", fg = "#7c7f93" },
|
||||
{ name = "mpv.conf", text = "", fg = "#4c4f69" },
|
||||
{ name = ".prettierrc.json5", text = "", fg = "#7287fd" },
|
||||
{ name = "i3status.conf", text = "", fg = "#e6e9ef" },
|
||||
{ name = "prettier.config.mjs", text = "", fg = "#7287fd" },
|
||||
{ name = ".pylintrc", text = "", fg = "#7c7f93" },
|
||||
{ name = "prettier.config.cjs", text = "", fg = "#7287fd" },
|
||||
{ name = ".luacheckrc", text = "", fg = "#04a5e5" },
|
||||
{ name = "containerfile", text = "", fg = "#7287fd" },
|
||||
{ name = "eslint.config.mjs", text = "", fg = "#8839ef" },
|
||||
{ name = "gruntfile.js", text = "", fg = "#fe640b" },
|
||||
{ name = "bun.lockb", text = "", fg = "#eff1f5" },
|
||||
{ name = ".gitattributes", text = "", fg = "#fe640b" },
|
||||
{ name = "gruntfile.ts", text = "", fg = "#fe640b" },
|
||||
{ name = "pom.xml", text = "", fg = "#d20f39" },
|
||||
{ name = "favicon.ico", text = "", fg = "#40a02b" },
|
||||
{ name = "package-lock.json", text = "", fg = "#d20f39" },
|
||||
{ name = "build", text = "", fg = "#40a02b" },
|
||||
{ name = "package.json", text = "", fg = "#e64553" },
|
||||
{ name = "nuxt.config.ts", text = "", fg = "#40a02b" },
|
||||
{ name = "nuxt.config.mjs", text = "", fg = "#40a02b" },
|
||||
{ name = "mix.lock", text = "", fg = "#7c7f93" },
|
||||
{ name = "makefile", text = "", fg = "#7c7f93" },
|
||||
{ name = "gulpfile.js", text = "", fg = "#d20f39" },
|
||||
{ name = "lxde-rc.xml", text = "", fg = "#8c8fa1" },
|
||||
{ name = "kritarc", text = "", fg = "#ea76cb" },
|
||||
{ name = "gtkrc", text = "", fg = "#eff1f5" },
|
||||
{ name = "ionic.config.json", text = "", fg = "#7287fd" },
|
||||
{ name = ".prettierrc.mjs", text = "", fg = "#7287fd" },
|
||||
{ name = ".prettierrc.yml", text = "", fg = "#7287fd" },
|
||||
{ name = ".npmrc", text = "", fg = "#e64553" },
|
||||
{ name = "weston.ini", text = "", fg = "#df8e1d" },
|
||||
{ name = "gulpfile.babel.js", text = "", fg = "#d20f39" },
|
||||
{ name = "i18n.config.ts", text = "", fg = "#7287fd" },
|
||||
{ name = "commitlint.config.js", text = "", fg = "#179299" },
|
||||
{ name = ".gitmodules", text = "", fg = "#fe640b" },
|
||||
{ name = "gradle-wrapper.properties", text = "", fg = "#1e66f5" },
|
||||
{ name = "hypridle.conf", text = "", fg = "#209fb5" },
|
||||
{ name = "vercel.json", text = "▲", fg = "#eff1f5" },
|
||||
{ name = "hyprlock.conf", text = "", fg = "#209fb5" },
|
||||
{ name = "go.sum", text = "", fg = "#209fb5" },
|
||||
{ name = "kdenlive-layoutsrc", text = "", fg = "#04a5e5" },
|
||||
{ name = "gruntfile.babel.js", text = "", fg = "#fe640b" },
|
||||
{ name = "compose.yml", text = "", fg = "#7287fd" },
|
||||
{ name = "i18n.config.js", text = "", fg = "#7287fd" },
|
||||
{ name = "readme.md", text = "", fg = "#eff1f5" },
|
||||
{ name = "gradlew", text = "", fg = "#1e66f5" },
|
||||
{ name = "go.work", text = "", fg = "#209fb5" },
|
||||
{ name = "gulpfile.ts", text = "", fg = "#d20f39" },
|
||||
{ name = "gnumakefile", text = "", fg = "#7c7f93" },
|
||||
{ name = "FreeCAD.conf", text = "", fg = "#d20f39" },
|
||||
{ name = "compose.yaml", text = "", fg = "#7287fd" },
|
||||
{ name = "eslint.config.js", text = "", fg = "#8839ef" },
|
||||
{ name = "hyprland.conf", text = "", fg = "#209fb5" },
|
||||
{ name = "docker-compose.yml", text = "", fg = "#7287fd" },
|
||||
{ name = "groovy", text = "", fg = "#5c5f77" },
|
||||
{ name = "QtProject.conf", text = "", fg = "#40a02b" },
|
||||
{ name = "platformio.ini", text = "", fg = "#fe640b" },
|
||||
{ name = "build.gradle", text = "", fg = "#1e66f5" },
|
||||
{ name = ".nuxtrc", text = "", fg = "#40a02b" },
|
||||
{ name = "_vimrc", text = "", fg = "#40a02b" },
|
||||
{ name = ".zprofile", text = "", fg = "#40a02b" },
|
||||
{ name = ".xsession", text = "", fg = "#fe640b" },
|
||||
{ name = "prettier.config.js", text = "", fg = "#7287fd" },
|
||||
{ name = ".babelrc", text = "", fg = "#40a02b" },
|
||||
{ name = "workspace", text = "", fg = "#40a02b" },
|
||||
{ name = ".prettierrc.json", text = "", fg = "#7287fd" },
|
||||
{ name = ".prettierrc.js", text = "", fg = "#7287fd" },
|
||||
{ name = ".Xresources", text = "", fg = "#fe640b" },
|
||||
{ name = ".gitignore", text = "", fg = "#fe640b" },
|
||||
{ name = ".justfile", text = "", fg = "#7c7f93" },
|
||||
]
|
||||
exts = [
|
||||
{ name = "otf", text = "", fg = "#eff1f5" },
|
||||
{ name = "import", text = "", fg = "#eff1f5" },
|
||||
{ name = "krz", text = "", fg = "#ea76cb" },
|
||||
{ name = "adb", text = "", fg = "#dce0e8" },
|
||||
{ name = "ttf", text = "", fg = "#eff1f5" },
|
||||
{ name = "webpack", text = "", fg = "#209fb5" },
|
||||
{ name = "dart", text = "", fg = "#1e66f5" },
|
||||
{ name = "vsh", text = "", fg = "#7287fd" },
|
||||
{ name = "doc", text = "", fg = "#1e66f5" },
|
||||
{ name = "zsh", text = "", fg = "#40a02b" },
|
||||
{ name = "ex", text = "", fg = "#7c7f93" },
|
||||
{ name = "hx", text = "", fg = "#df8e1d" },
|
||||
{ name = "fodt", text = "", fg = "#04a5e5" },
|
||||
{ name = "mojo", text = "", fg = "#fe640b" },
|
||||
{ name = "templ", text = "", fg = "#df8e1d" },
|
||||
{ name = "nix", text = "", fg = "#04a5e5" },
|
||||
{ name = "cshtml", text = "", fg = "#8839ef" },
|
||||
{ name = "fish", text = "", fg = "#5c5f77" },
|
||||
{ name = "ply", text = "", fg = "#8c8fa1" },
|
||||
{ name = "sldprt", text = "", fg = "#40a02b" },
|
||||
{ name = "gemspec", text = "", fg = "#d20f39" },
|
||||
{ name = "mjs", text = "", fg = "#df8e1d" },
|
||||
{ name = "csh", text = "", fg = "#5c5f77" },
|
||||
{ name = "cmake", text = "", fg = "#dce0e8" },
|
||||
{ name = "fodp", text = "", fg = "#df8e1d" },
|
||||
{ name = "vi", text = "", fg = "#df8e1d" },
|
||||
{ name = "msf", text = "", fg = "#1e66f5" },
|
||||
{ name = "blp", text = "", fg = "#7287fd" },
|
||||
{ name = "less", text = "", fg = "#4c4f69" },
|
||||
{ name = "sh", text = "", fg = "#5c5f77" },
|
||||
{ name = "odg", text = "", fg = "#eff1f5" },
|
||||
{ name = "mint", text = "", fg = "#40a02b" },
|
||||
{ name = "dll", text = "", fg = "#4c4f69" },
|
||||
{ name = "odf", text = "", fg = "#ea76cb" },
|
||||
{ name = "sqlite3", text = "", fg = "#dce0e8" },
|
||||
{ name = "Dockerfile", text = "", fg = "#7287fd" },
|
||||
{ name = "ksh", text = "", fg = "#5c5f77" },
|
||||
{ name = "rmd", text = "", fg = "#209fb5" },
|
||||
{ name = "wv", text = "", fg = "#04a5e5" },
|
||||
{ name = "xml", text = "", fg = "#fe640b" },
|
||||
{ name = "markdown", text = "", fg = "#4c4f69" },
|
||||
{ name = "qml", text = "", fg = "#40a02b" },
|
||||
{ name = "3gp", text = "", fg = "#df8e1d" },
|
||||
{ name = "pxi", text = "", fg = "#04a5e5" },
|
||||
{ name = "flac", text = "", fg = "#1e66f5" },
|
||||
{ name = "gpr", text = "", fg = "#ea76cb" },
|
||||
{ name = "huff", text = "", fg = "#8839ef" },
|
||||
{ name = "json", text = "", fg = "#40a02b" },
|
||||
{ name = "gv", text = "", fg = "#1e66f5" },
|
||||
{ name = "bmp", text = "", fg = "#7c7f93" },
|
||||
{ name = "lock", text = "", fg = "#bcc0cc" },
|
||||
{ name = "sha384", text = "", fg = "#7c7f93" },
|
||||
{ name = "cobol", text = "⚙", fg = "#1e66f5" },
|
||||
{ name = "cob", text = "⚙", fg = "#1e66f5" },
|
||||
{ name = "java", text = "", fg = "#d20f39" },
|
||||
{ name = "cjs", text = "", fg = "#40a02b" },
|
||||
{ name = "qm", text = "", fg = "#209fb5" },
|
||||
{ name = "ebuild", text = "", fg = "#4c4f69" },
|
||||
{ name = "mustache", text = "", fg = "#fe640b" },
|
||||
{ name = "terminal", text = "", fg = "#40a02b" },
|
||||
{ name = "ejs", text = "", fg = "#40a02b" },
|
||||
{ name = "brep", text = "", fg = "#40a02b" },
|
||||
{ name = "rar", text = "", fg = "#df8e1d" },
|
||||
{ name = "gradle", text = "", fg = "#1e66f5" },
|
||||
{ name = "gnumakefile", text = "", fg = "#7c7f93" },
|
||||
{ name = "applescript", text = "", fg = "#7c7f93" },
|
||||
{ name = "elm", text = "", fg = "#209fb5" },
|
||||
{ name = "ebook", text = "", fg = "#df8e1d" },
|
||||
{ name = "kra", text = "", fg = "#ea76cb" },
|
||||
{ name = "tf", text = "", fg = "#8839ef" },
|
||||
{ name = "xls", text = "", fg = "#40a02b" },
|
||||
{ name = "fnl", text = "", fg = "#eff1f5" },
|
||||
{ name = "kdbx", text = "", fg = "#40a02b" },
|
||||
{ name = "kicad_pcb", text = "", fg = "#eff1f5" },
|
||||
{ name = "cfg", text = "", fg = "#7c7f93" },
|
||||
{ name = "ape", text = "", fg = "#04a5e5" },
|
||||
{ name = "org", text = "", fg = "#179299" },
|
||||
{ name = "yml", text = "", fg = "#7c7f93" },
|
||||
{ name = "swift", text = "", fg = "#fe640b" },
|
||||
{ name = "eln", text = "", fg = "#7c7f93" },
|
||||
{ name = "sol", text = "", fg = "#209fb5" },
|
||||
{ name = "awk", text = "", fg = "#5c5f77" },
|
||||
{ name = "7z", text = "", fg = "#df8e1d" },
|
||||
{ name = "apl", text = "⍝", fg = "#df8e1d" },
|
||||
{ name = "epp", text = "", fg = "#df8e1d" },
|
||||
{ name = "app", text = "", fg = "#d20f39" },
|
||||
{ name = "dot", text = "", fg = "#1e66f5" },
|
||||
{ name = "kpp", text = "", fg = "#ea76cb" },
|
||||
{ name = "eot", text = "", fg = "#eff1f5" },
|
||||
{ name = "hpp", text = "", fg = "#7c7f93" },
|
||||
{ name = "spec.tsx", text = "", fg = "#1e66f5" },
|
||||
{ name = "hurl", text = "", fg = "#e64553" },
|
||||
{ name = "cxxm", text = "", fg = "#209fb5" },
|
||||
{ name = "c", text = "", fg = "#7287fd" },
|
||||
{ name = "fcmacro", text = "", fg = "#d20f39" },
|
||||
{ name = "sass", text = "", fg = "#dd7878" },
|
||||
{ name = "yaml", text = "", fg = "#7c7f93" },
|
||||
{ name = "xz", text = "", fg = "#df8e1d" },
|
||||
{ name = "material", text = "", fg = "#ea76cb" },
|
||||
{ name = "json5", text = "", fg = "#40a02b" },
|
||||
{ name = "signature", text = "λ", fg = "#fe640b" },
|
||||
{ name = "3mf", text = "", fg = "#8c8fa1" },
|
||||
{ name = "jpg", text = "", fg = "#7c7f93" },
|
||||
{ name = "xpi", text = "", fg = "#fe640b" },
|
||||
{ name = "fcmat", text = "", fg = "#d20f39" },
|
||||
{ name = "pot", text = "", fg = "#209fb5" },
|
||||
{ name = "bin", text = "", fg = "#d20f39" },
|
||||
{ name = "xlsx", text = "", fg = "#40a02b" },
|
||||
{ name = "aac", text = "", fg = "#04a5e5" },
|
||||
{ name = "kicad_sym", text = "", fg = "#eff1f5" },
|
||||
{ name = "xcstrings", text = "", fg = "#209fb5" },
|
||||
{ name = "lff", text = "", fg = "#eff1f5" },
|
||||
{ name = "xcf", text = "", fg = "#5c5f77" },
|
||||
{ name = "azcli", text = "", fg = "#1e66f5" },
|
||||
{ name = "license", text = "", fg = "#40a02b" },
|
||||
{ name = "jsonc", text = "", fg = "#40a02b" },
|
||||
{ name = "xaml", text = "", fg = "#8839ef" },
|
||||
{ name = "md5", text = "", fg = "#7c7f93" },
|
||||
{ name = "xm", text = "", fg = "#209fb5" },
|
||||
{ name = "sln", text = "", fg = "#8839ef" },
|
||||
{ name = "jl", text = "", fg = "#ea76cb" },
|
||||
{ name = "ml", text = "", fg = "#fe640b" },
|
||||
{ name = "http", text = "", fg = "#04a5e5" },
|
||||
{ name = "x", text = "", fg = "#7287fd" },
|
||||
{ name = "wvc", text = "", fg = "#04a5e5" },
|
||||
{ name = "wrz", text = "", fg = "#8c8fa1" },
|
||||
{ name = "csproj", text = "", fg = "#8839ef" },
|
||||
{ name = "wrl", text = "", fg = "#8c8fa1" },
|
||||
{ name = "wma", text = "", fg = "#04a5e5" },
|
||||
{ name = "woff2", text = "", fg = "#eff1f5" },
|
||||
{ name = "woff", text = "", fg = "#eff1f5" },
|
||||
{ name = "tscn", text = "", fg = "#7c7f93" },
|
||||
{ name = "webmanifest", text = "", fg = "#df8e1d" },
|
||||
{ name = "webm", text = "", fg = "#df8e1d" },
|
||||
{ name = "fcbak", text = "", fg = "#d20f39" },
|
||||
{ name = "log", text = "", fg = "#4c4f69" },
|
||||
{ name = "wav", text = "", fg = "#04a5e5" },
|
||||
{ name = "wasm", text = "", fg = "#8839ef" },
|
||||
{ name = "styl", text = "", fg = "#40a02b" },
|
||||
{ name = "gif", text = "", fg = "#7c7f93" },
|
||||
{ name = "resi", text = "", fg = "#dd7878" },
|
||||
{ name = "aiff", text = "", fg = "#04a5e5" },
|
||||
{ name = "sha256", text = "", fg = "#7c7f93" },
|
||||
{ name = "igs", text = "", fg = "#40a02b" },
|
||||
{ name = "vsix", text = "", fg = "#8839ef" },
|
||||
{ name = "vim", text = "", fg = "#40a02b" },
|
||||
{ name = "diff", text = "", fg = "#4c4f69" },
|
||||
{ name = "drl", text = "", fg = "#dc8a78" },
|
||||
{ name = "erl", text = "", fg = "#ea76cb" },
|
||||
{ name = "vhdl", text = "", fg = "#40a02b" },
|
||||
{ name = "🔥", text = "", fg = "#fe640b" },
|
||||
{ name = "hrl", text = "", fg = "#ea76cb" },
|
||||
{ name = "fsi", text = "", fg = "#209fb5" },
|
||||
{ name = "mm", text = "", fg = "#209fb5" },
|
||||
{ name = "bz", text = "", fg = "#df8e1d" },
|
||||
{ name = "vh", text = "", fg = "#40a02b" },
|
||||
{ name = "kdb", text = "", fg = "#40a02b" },
|
||||
{ name = "gz", text = "", fg = "#df8e1d" },
|
||||
{ name = "cpp", text = "", fg = "#209fb5" },
|
||||
{ name = "ui", text = "", fg = "#1e66f5" },
|
||||
{ name = "txt", text = "", fg = "#40a02b" },
|
||||
{ name = "spec.ts", text = "", fg = "#209fb5" },
|
||||
{ name = "ccm", text = "", fg = "#e64553" },
|
||||
{ name = "typoscript", text = "", fg = "#df8e1d" },
|
||||
{ name = "typ", text = "", fg = "#209fb5" },
|
||||
{ name = "txz", text = "", fg = "#df8e1d" },
|
||||
{ name = "test.ts", text = "", fg = "#209fb5" },
|
||||
{ name = "tsx", text = "", fg = "#1e66f5" },
|
||||
{ name = "mk", text = "", fg = "#7c7f93" },
|
||||
{ name = "webp", text = "", fg = "#7c7f93" },
|
||||
{ name = "opus", text = "", fg = "#1e66f5" },
|
||||
{ name = "bicep", text = "", fg = "#209fb5" },
|
||||
{ name = "ts", text = "", fg = "#209fb5" },
|
||||
{ name = "tres", text = "", fg = "#7c7f93" },
|
||||
{ name = "torrent", text = "", fg = "#40a02b" },
|
||||
{ name = "cxx", text = "", fg = "#209fb5" },
|
||||
{ name = "iso", text = "", fg = "#bcc0cc" },
|
||||
{ name = "ixx", text = "", fg = "#209fb5" },
|
||||
{ name = "hxx", text = "", fg = "#7c7f93" },
|
||||
{ name = "gql", text = "", fg = "#ea76cb" },
|
||||
{ name = "tmux", text = "", fg = "#40a02b" },
|
||||
{ name = "ini", text = "", fg = "#7c7f93" },
|
||||
{ name = "m3u8", text = "", fg = "#dd7878" },
|
||||
{ name = "image", text = "", fg = "#bcc0cc" },
|
||||
{ name = "tfvars", text = "", fg = "#8839ef" },
|
||||
{ name = "tex", text = "", fg = "#40a02b" },
|
||||
{ name = "cbl", text = "⚙", fg = "#1e66f5" },
|
||||
{ name = "flc", text = "", fg = "#eff1f5" },
|
||||
{ name = "elc", text = "", fg = "#7c7f93" },
|
||||
{ name = "test.tsx", text = "", fg = "#1e66f5" },
|
||||
{ name = "twig", text = "", fg = "#40a02b" },
|
||||
{ name = "sql", text = "", fg = "#dce0e8" },
|
||||
{ name = "test.jsx", text = "", fg = "#209fb5" },
|
||||
{ name = "htm", text = "", fg = "#fe640b" },
|
||||
{ name = "gcode", text = "", fg = "#1e66f5" },
|
||||
{ name = "test.js", text = "", fg = "#40a02b" },
|
||||
{ name = "ino", text = "", fg = "#209fb5" },
|
||||
{ name = "tcl", text = "", fg = "#1e66f5" },
|
||||
{ name = "cljs", text = "", fg = "#209fb5" },
|
||||
{ name = "tsconfig", text = "", fg = "#df8e1d" },
|
||||
{ name = "img", text = "", fg = "#bcc0cc" },
|
||||
{ name = "t", text = "", fg = "#209fb5" },
|
||||
{ name = "fcstd1", text = "", fg = "#d20f39" },
|
||||
{ name = "out", text = "", fg = "#d20f39" },
|
||||
{ name = "jsx", text = "", fg = "#209fb5" },
|
||||
{ name = "bash", text = "", fg = "#40a02b" },
|
||||
{ name = "edn", text = "", fg = "#209fb5" },
|
||||
{ name = "rss", text = "", fg = "#df8e1d" },
|
||||
{ name = "flf", text = "", fg = "#eff1f5" },
|
||||
{ name = "cache", text = "", fg = "#eff1f5" },
|
||||
{ name = "sbt", text = "", fg = "#d20f39" },
|
||||
{ name = "cppm", text = "", fg = "#209fb5" },
|
||||
{ name = "svelte", text = "", fg = "#fe640b" },
|
||||
{ name = "mo", text = "∞", fg = "#7287fd" },
|
||||
{ name = "sv", text = "", fg = "#40a02b" },
|
||||
{ name = "ko", text = "", fg = "#e6e9ef" },
|
||||
{ name = "suo", text = "", fg = "#8839ef" },
|
||||
{ name = "sldasm", text = "", fg = "#40a02b" },
|
||||
{ name = "icalendar", text = "", fg = "#4c4f69" },
|
||||
{ name = "go", text = "", fg = "#209fb5" },
|
||||
{ name = "sublime", text = "", fg = "#fe640b" },
|
||||
{ name = "stl", text = "", fg = "#8c8fa1" },
|
||||
{ name = "mobi", text = "", fg = "#df8e1d" },
|
||||
{ name = "graphql", text = "", fg = "#ea76cb" },
|
||||
{ name = "m3u", text = "", fg = "#dd7878" },
|
||||
{ name = "cpy", text = "⚙", fg = "#1e66f5" },
|
||||
{ name = "kdenlive", text = "", fg = "#04a5e5" },
|
||||
{ name = "pyo", text = "", fg = "#df8e1d" },
|
||||
{ name = "po", text = "", fg = "#209fb5" },
|
||||
{ name = "scala", text = "", fg = "#d20f39" },
|
||||
{ name = "exs", text = "", fg = "#7c7f93" },
|
||||
{ name = "odp", text = "", fg = "#df8e1d" },
|
||||
{ name = "dump", text = "", fg = "#dce0e8" },
|
||||
{ name = "stp", text = "", fg = "#40a02b" },
|
||||
{ name = "step", text = "", fg = "#40a02b" },
|
||||
{ name = "ste", text = "", fg = "#40a02b" },
|
||||
{ name = "aif", text = "", fg = "#04a5e5" },
|
||||
{ name = "strings", text = "", fg = "#209fb5" },
|
||||
{ name = "cp", text = "", fg = "#209fb5" },
|
||||
{ name = "fsscript", text = "", fg = "#209fb5" },
|
||||
{ name = "mli", text = "", fg = "#fe640b" },
|
||||
{ name = "bak", text = "", fg = "#7c7f93" },
|
||||
{ name = "ssa", text = "", fg = "#df8e1d" },
|
||||
{ name = "toml", text = "", fg = "#d20f39" },
|
||||
{ name = "makefile", text = "", fg = "#7c7f93" },
|
||||
{ name = "php", text = "", fg = "#7c7f93" },
|
||||
{ name = "zst", text = "", fg = "#df8e1d" },
|
||||
{ name = "spec.jsx", text = "", fg = "#209fb5" },
|
||||
{ name = "kbx", text = "", fg = "#7c7f93" },
|
||||
{ name = "fbx", text = "", fg = "#8c8fa1" },
|
||||
{ name = "blend", text = "", fg = "#fe640b" },
|
||||
{ name = "ifc", text = "", fg = "#40a02b" },
|
||||
{ name = "spec.js", text = "", fg = "#40a02b" },
|
||||
{ name = "so", text = "", fg = "#e6e9ef" },
|
||||
{ name = "desktop", text = "", fg = "#4c4f69" },
|
||||
{ name = "sml", text = "λ", fg = "#fe640b" },
|
||||
{ name = "slvs", text = "", fg = "#40a02b" },
|
||||
{ name = "pp", text = "", fg = "#df8e1d" },
|
||||
{ name = "ps1", text = "", fg = "#1e66f5" },
|
||||
{ name = "dropbox", text = "", fg = "#1e66f5" },
|
||||
{ name = "kicad_mod", text = "", fg = "#eff1f5" },
|
||||
{ name = "bat", text = "", fg = "#40a02b" },
|
||||
{ name = "slim", text = "", fg = "#fe640b" },
|
||||
{ name = "skp", text = "", fg = "#40a02b" },
|
||||
{ name = "css", text = "", fg = "#04a5e5" },
|
||||
{ name = "xul", text = "", fg = "#fe640b" },
|
||||
{ name = "ige", text = "", fg = "#40a02b" },
|
||||
{ name = "glb", text = "", fg = "#df8e1d" },
|
||||
{ name = "ppt", text = "", fg = "#e64553" },
|
||||
{ name = "sha512", text = "", fg = "#7c7f93" },
|
||||
{ name = "ics", text = "", fg = "#4c4f69" },
|
||||
{ name = "mdx", text = "", fg = "#209fb5" },
|
||||
{ name = "sha1", text = "", fg = "#7c7f93" },
|
||||
{ name = "f3d", text = "", fg = "#40a02b" },
|
||||
{ name = "ass", text = "", fg = "#df8e1d" },
|
||||
{ name = "godot", text = "", fg = "#7c7f93" },
|
||||
{ name = "ifb", text = "", fg = "#4c4f69" },
|
||||
{ name = "cson", text = "", fg = "#40a02b" },
|
||||
{ name = "lib", text = "", fg = "#4c4f69" },
|
||||
{ name = "luac", text = "", fg = "#04a5e5" },
|
||||
{ name = "heex", text = "", fg = "#7c7f93" },
|
||||
{ name = "scm", text = "", fg = "#eff1f5" },
|
||||
{ name = "psd1", text = "", fg = "#7287fd" },
|
||||
{ name = "sc", text = "", fg = "#d20f39" },
|
||||
{ name = "scad", text = "", fg = "#df8e1d" },
|
||||
{ name = "kts", text = "", fg = "#8839ef" },
|
||||
{ name = "svh", text = "", fg = "#40a02b" },
|
||||
{ name = "mts", text = "", fg = "#209fb5" },
|
||||
{ name = "nfo", text = "", fg = "#eff1f5" },
|
||||
{ name = "pck", text = "", fg = "#7c7f93" },
|
||||
{ name = "rproj", text = "", fg = "#40a02b" },
|
||||
{ name = "rlib", text = "", fg = "#dc8a78" },
|
||||
{ name = "cljd", text = "", fg = "#209fb5" },
|
||||
{ name = "ods", text = "", fg = "#40a02b" },
|
||||
{ name = "res", text = "", fg = "#d20f39" },
|
||||
{ name = "apk", text = "", fg = "#40a02b" },
|
||||
{ name = "haml", text = "", fg = "#eff1f5" },
|
||||
{ name = "d.ts", text = "", fg = "#df8e1d" },
|
||||
{ name = "razor", text = "", fg = "#8839ef" },
|
||||
{ name = "rake", text = "", fg = "#d20f39" },
|
||||
{ name = "patch", text = "", fg = "#4c4f69" },
|
||||
{ name = "cuh", text = "", fg = "#7c7f93" },
|
||||
{ name = "d", text = "", fg = "#d20f39" },
|
||||
{ name = "query", text = "", fg = "#40a02b" },
|
||||
{ name = "psb", text = "", fg = "#209fb5" },
|
||||
{ name = "nu", text = ">", fg = "#40a02b" },
|
||||
{ name = "mov", text = "", fg = "#df8e1d" },
|
||||
{ name = "lrc", text = "", fg = "#df8e1d" },
|
||||
{ name = "pyx", text = "", fg = "#04a5e5" },
|
||||
{ name = "pyw", text = "", fg = "#04a5e5" },
|
||||
{ name = "cu", text = "", fg = "#40a02b" },
|
||||
{ name = "bazel", text = "", fg = "#40a02b" },
|
||||
{ name = "obj", text = "", fg = "#8c8fa1" },
|
||||
{ name = "pyi", text = "", fg = "#df8e1d" },
|
||||
{ name = "pyd", text = "", fg = "#df8e1d" },
|
||||
{ name = "exe", text = "", fg = "#d20f39" },
|
||||
{ name = "pyc", text = "", fg = "#df8e1d" },
|
||||
{ name = "fctb", text = "", fg = "#d20f39" },
|
||||
{ name = "part", text = "", fg = "#40a02b" },
|
||||
{ name = "blade.php", text = "", fg = "#e64553" },
|
||||
{ name = "git", text = "", fg = "#fe640b" },
|
||||
{ name = "psd", text = "", fg = "#209fb5" },
|
||||
{ name = "qss", text = "", fg = "#40a02b" },
|
||||
{ name = "csv", text = "", fg = "#40a02b" },
|
||||
{ name = "psm1", text = "", fg = "#7287fd" },
|
||||
{ name = "dconf", text = "", fg = "#eff1f5" },
|
||||
{ name = "config.ru", text = "", fg = "#d20f39" },
|
||||
{ name = "prisma", text = "", fg = "#1e66f5" },
|
||||
{ name = "conf", text = "", fg = "#7c7f93" },
|
||||
{ name = "clj", text = "", fg = "#40a02b" },
|
||||
{ name = "o", text = "", fg = "#d20f39" },
|
||||
{ name = "mp4", text = "", fg = "#df8e1d" },
|
||||
{ name = "cc", text = "", fg = "#e64553" },
|
||||
{ name = "kicad_prl", text = "", fg = "#eff1f5" },
|
||||
{ name = "bz3", text = "", fg = "#df8e1d" },
|
||||
{ name = "asc", text = "", fg = "#6c6f85" },
|
||||
{ name = "png", text = "", fg = "#7c7f93" },
|
||||
{ name = "android", text = "", fg = "#40a02b" },
|
||||
{ name = "pm", text = "", fg = "#209fb5" },
|
||||
{ name = "h", text = "", fg = "#7c7f93" },
|
||||
{ name = "pls", text = "", fg = "#dd7878" },
|
||||
{ name = "ipynb", text = "", fg = "#fe640b" },
|
||||
{ name = "pl", text = "", fg = "#209fb5" },
|
||||
{ name = "ads", text = "", fg = "#eff1f5" },
|
||||
{ name = "sqlite", text = "", fg = "#dce0e8" },
|
||||
{ name = "pdf", text = "", fg = "#d20f39" },
|
||||
{ name = "pcm", text = "", fg = "#1e66f5" },
|
||||
{ name = "ico", text = "", fg = "#40a02b" },
|
||||
{ name = "a", text = "", fg = "#e6e9ef" },
|
||||
{ name = "R", text = "", fg = "#1e66f5" },
|
||||
{ name = "ogg", text = "", fg = "#1e66f5" },
|
||||
{ name = "pxd", text = "", fg = "#04a5e5" },
|
||||
{ name = "kdenlivetitle", text = "", fg = "#04a5e5" },
|
||||
{ name = "jxl", text = "", fg = "#7c7f93" },
|
||||
{ name = "nswag", text = "", fg = "#40a02b" },
|
||||
{ name = "nim", text = "", fg = "#df8e1d" },
|
||||
{ name = "bqn", text = "⎉", fg = "#179299" },
|
||||
{ name = "cts", text = "", fg = "#209fb5" },
|
||||
{ name = "fcparam", text = "", fg = "#d20f39" },
|
||||
{ name = "rs", text = "", fg = "#dc8a78" },
|
||||
{ name = "mpp", text = "", fg = "#209fb5" },
|
||||
{ name = "fdmdownload", text = "", fg = "#40a02b" },
|
||||
{ name = "pptx", text = "", fg = "#e64553" },
|
||||
{ name = "jpeg", text = "", fg = "#7c7f93" },
|
||||
{ name = "bib", text = "", fg = "#40a02b" },
|
||||
{ name = "vhd", text = "", fg = "#40a02b" },
|
||||
{ name = "m", text = "", fg = "#7287fd" },
|
||||
{ name = "js", text = "", fg = "#40a02b" },
|
||||
{ name = "eex", text = "", fg = "#7c7f93" },
|
||||
{ name = "tbc", text = "", fg = "#1e66f5" },
|
||||
{ name = "astro", text = "", fg = "#e64553" },
|
||||
{ name = "sha224", text = "", fg = "#7c7f93" },
|
||||
{ name = "xcplayground", text = "", fg = "#fe640b" },
|
||||
{ name = "el", text = "", fg = "#7c7f93" },
|
||||
{ name = "m4v", text = "", fg = "#df8e1d" },
|
||||
{ name = "m4a", text = "", fg = "#04a5e5" },
|
||||
{ name = "cs", text = "", fg = "#40a02b" },
|
||||
{ name = "hs", text = "", fg = "#7c7f93" },
|
||||
{ name = "tgz", text = "", fg = "#df8e1d" },
|
||||
{ name = "fs", text = "", fg = "#209fb5" },
|
||||
{ name = "luau", text = "", fg = "#04a5e5" },
|
||||
{ name = "dxf", text = "", fg = "#40a02b" },
|
||||
{ name = "download", text = "", fg = "#40a02b" },
|
||||
{ name = "cast", text = "", fg = "#df8e1d" },
|
||||
{ name = "qrc", text = "", fg = "#40a02b" },
|
||||
{ name = "lua", text = "", fg = "#04a5e5" },
|
||||
{ name = "lhs", text = "", fg = "#7c7f93" },
|
||||
{ name = "md", text = "", fg = "#4c4f69" },
|
||||
{ name = "leex", text = "", fg = "#7c7f93" },
|
||||
{ name = "ai", text = "", fg = "#40a02b" },
|
||||
{ name = "lck", text = "", fg = "#bcc0cc" },
|
||||
{ name = "kt", text = "", fg = "#8839ef" },
|
||||
{ name = "bicepparam", text = "", fg = "#7c7f93" },
|
||||
{ name = "hex", text = "", fg = "#1e66f5" },
|
||||
{ name = "zig", text = "", fg = "#df8e1d" },
|
||||
{ name = "bzl", text = "", fg = "#40a02b" },
|
||||
{ name = "cljc", text = "", fg = "#40a02b" },
|
||||
{ name = "kicad_dru", text = "", fg = "#eff1f5" },
|
||||
{ name = "fctl", text = "", fg = "#d20f39" },
|
||||
{ name = "f#", text = "", fg = "#209fb5" },
|
||||
{ name = "odt", text = "", fg = "#04a5e5" },
|
||||
{ name = "conda", text = "", fg = "#40a02b" },
|
||||
{ name = "vala", text = "", fg = "#8839ef" },
|
||||
{ name = "erb", text = "", fg = "#d20f39" },
|
||||
{ name = "mp3", text = "", fg = "#04a5e5" },
|
||||
{ name = "bz2", text = "", fg = "#df8e1d" },
|
||||
{ name = "coffee", text = "", fg = "#40a02b" },
|
||||
{ name = "cr", text = "", fg = "#ccd0da" },
|
||||
{ name = "f90", text = "", fg = "#5c5f77" },
|
||||
{ name = "jwmrc", text = "", fg = "#1e66f5" },
|
||||
{ name = "c++", text = "", fg = "#e64553" },
|
||||
{ name = "fcscript", text = "", fg = "#d20f39" },
|
||||
{ name = "fods", text = "", fg = "#40a02b" },
|
||||
{ name = "cue", text = "", fg = "#dd7878" },
|
||||
{ name = "srt", text = "", fg = "#df8e1d" },
|
||||
{ name = "info", text = "", fg = "#eff1f5" },
|
||||
{ name = "hh", text = "", fg = "#7c7f93" },
|
||||
{ name = "sig", text = "λ", fg = "#fe640b" },
|
||||
{ name = "html", text = "", fg = "#fe640b" },
|
||||
{ name = "iges", text = "", fg = "#40a02b" },
|
||||
{ name = "kicad_wks", text = "", fg = "#eff1f5" },
|
||||
{ name = "hbs", text = "", fg = "#fe640b" },
|
||||
{ name = "fcstd", text = "", fg = "#d20f39" },
|
||||
{ name = "gresource", text = "", fg = "#eff1f5" },
|
||||
{ name = "sub", text = "", fg = "#df8e1d" },
|
||||
{ name = "ical", text = "", fg = "#4c4f69" },
|
||||
{ name = "crdownload", text = "", fg = "#40a02b" },
|
||||
{ name = "pub", text = "", fg = "#df8e1d" },
|
||||
{ name = "vue", text = "", fg = "#40a02b" },
|
||||
{ name = "gd", text = "", fg = "#7c7f93" },
|
||||
{ name = "fsx", text = "", fg = "#209fb5" },
|
||||
{ name = "mkv", text = "", fg = "#df8e1d" },
|
||||
{ name = "py", text = "", fg = "#df8e1d" },
|
||||
{ name = "kicad_sch", text = "", fg = "#eff1f5" },
|
||||
{ name = "epub", text = "", fg = "#df8e1d" },
|
||||
{ name = "env", text = "", fg = "#df8e1d" },
|
||||
{ name = "magnet", text = "", fg = "#d20f39" },
|
||||
{ name = "elf", text = "", fg = "#d20f39" },
|
||||
{ name = "fodg", text = "", fg = "#eff1f5" },
|
||||
{ name = "svg", text = "", fg = "#df8e1d" },
|
||||
{ name = "dwg", text = "", fg = "#40a02b" },
|
||||
{ name = "docx", text = "", fg = "#1e66f5" },
|
||||
{ name = "pro", text = "", fg = "#df8e1d" },
|
||||
{ name = "db", text = "", fg = "#dce0e8" },
|
||||
{ name = "rb", text = "", fg = "#d20f39" },
|
||||
{ name = "r", text = "", fg = "#1e66f5" },
|
||||
{ name = "scss", text = "", fg = "#dd7878" },
|
||||
{ name = "cow", text = "", fg = "#fe640b" },
|
||||
{ name = "gleam", text = "", fg = "#ea76cb" },
|
||||
{ name = "v", text = "", fg = "#40a02b" },
|
||||
{ name = "kicad_pro", text = "", fg = "#eff1f5" },
|
||||
{ name = "liquid", text = "", fg = "#40a02b" },
|
||||
{ name = "zip", text = "", fg = "#df8e1d" },
|
||||
]
|
||||
|
|
@ -1 +0,0 @@
|
|||
light.toml
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
[mgr]
|
||||
show_hidden = true
|
||||
linemode = "size_and_mtime"
|
||||
|
||||
[preview]
|
||||
wrap = "yes"
|
||||
Loading…
Add table
Add a link
Reference in a new issue