mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-30 18:10:43 +00:00
Add yazi (terminal filemgr)
This commit is contained in:
parent
8d337e6a47
commit
aee32f4113
5 changed files with 304 additions and 0 deletions
147
home/programs/terminal/file-managers/yazi/theme/icons.nix
Normal file
147
home/programs/terminal/file-managers/yazi/theme/icons.nix
Normal file
|
@ -0,0 +1,147 @@
|
|||
{
|
||||
programs.yazi.theme.icons = {
|
||||
# Default
|
||||
"*" = "";
|
||||
"*/" = "";
|
||||
|
||||
# Home
|
||||
".config/" = "";
|
||||
".ssh/" = "";
|
||||
"Desktop/" = "";
|
||||
"Development/" = "";
|
||||
"Documents/" = "";
|
||||
"Downloads/" = "";
|
||||
"Library/" = "";
|
||||
"Movies/" = "";
|
||||
"Music/" = "";
|
||||
"Pictures/" = "";
|
||||
"Videos/" = "";
|
||||
"Public/" = "";
|
||||
|
||||
# Git
|
||||
".git/" = "";
|
||||
".gitignore" = "";
|
||||
".gitmodules" = "";
|
||||
".gitattributes" = "";
|
||||
|
||||
# Dotfiles
|
||||
".DS_Store" = "";
|
||||
".bashrc" = "";
|
||||
".bashprofile" = "";
|
||||
".zshrc" = "";
|
||||
".zshenv" = "";
|
||||
".zprofile" = "";
|
||||
".vimrc" = "";
|
||||
|
||||
# Text
|
||||
"*.txt" = "";
|
||||
"*.md" = "";
|
||||
"*.rst" = "";
|
||||
COPYING = "";
|
||||
LICENSE = "";
|
||||
|
||||
# Archives
|
||||
"*.zip" = "";
|
||||
"*.tar" = "";
|
||||
"*.gz" = "";
|
||||
"*.7z" = "";
|
||||
"*.bz2" = "";
|
||||
"*.xz" = "";
|
||||
|
||||
# Documents
|
||||
"*.csv" = "";
|
||||
"*.doc" = "";
|
||||
"*.doct" = "";
|
||||
"*.docx" = "";
|
||||
"*.dot" = "";
|
||||
"*.ods" = "";
|
||||
"*.ots" = "";
|
||||
"*.pdf" = "";
|
||||
"*.pom" = "";
|
||||
"*.pot" = "";
|
||||
"*.ppm" = "";
|
||||
"*.pps" = "";
|
||||
"*.ppt" = "";
|
||||
"*.potx" = "";
|
||||
"*.ppmx" = "";
|
||||
"*.ppsx" = "";
|
||||
"*.pptx" = "";
|
||||
"*.xlc" = "";
|
||||
"*.xlm" = "";
|
||||
"*.xls" = "";
|
||||
"*.xlt" = "";
|
||||
"*.xlsm" = "";
|
||||
"*.xlsx" = "";
|
||||
|
||||
# Audio
|
||||
"*.mp3" = "";
|
||||
"*.flac" = "";
|
||||
"*.wav" = "";
|
||||
"*.aac" = "";
|
||||
"*.ogg" = "";
|
||||
"*.m4a" = "";
|
||||
"*.mp2" = "";
|
||||
|
||||
# Movies
|
||||
"*.mp4" = "";
|
||||
"*.mkv" = "";
|
||||
"*.avi" = "";
|
||||
"*.mov" = "";
|
||||
"*.webm" = "";
|
||||
|
||||
# Images
|
||||
"*.jpg" = "";
|
||||
"*.jpeg" = "";
|
||||
"*.png" = "";
|
||||
"*.gif" = "";
|
||||
"*.webp" = "";
|
||||
"*.avif" = "";
|
||||
"*.bmp" = "";
|
||||
"*.ico" = "";
|
||||
"*.svg" = "";
|
||||
"*.xcf" = "";
|
||||
"*.HEIC" = "";
|
||||
|
||||
# Programming
|
||||
"*.c" = "";
|
||||
"*.cpp" = "";
|
||||
"*.h" = "";
|
||||
"*.hpp" = "";
|
||||
"*.rs" = "";
|
||||
"*.go" = "";
|
||||
"*.py" = "";
|
||||
"*.hs" = "";
|
||||
"*.js" = "";
|
||||
"*.ts" = "";
|
||||
"*.tsx" = "";
|
||||
"*.jsx" = "";
|
||||
"*.rb" = "";
|
||||
"*.php" = "";
|
||||
"*.java" = "";
|
||||
"*.sh" = "";
|
||||
"*.fish" = "";
|
||||
"*.swift" = "";
|
||||
"*.vim" = "";
|
||||
"*.lua" = "";
|
||||
"*.html" = "";
|
||||
"*.css" = "";
|
||||
"*.sass" = "";
|
||||
"*.scss" = "";
|
||||
"*.json" = "";
|
||||
"*.toml" = "";
|
||||
"*.yml" = "";
|
||||
"*.yaml" = "";
|
||||
"*.ini" = "";
|
||||
"*.conf" = "";
|
||||
"*.lock" = "";
|
||||
"*.nix" = "";
|
||||
Containerfile = "";
|
||||
Dockerfile = "";
|
||||
|
||||
# Misc
|
||||
"*.bin" = "";
|
||||
"*.exe" = "";
|
||||
"*.pkg" = "";
|
||||
};
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue