-
-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(exa PR) 1119 #36
(exa PR) 1119 #36
Conversation
Trash # ~/.local/share/Trash *.a # ~/.pyenv/versions/3.9.13/lib/libpython3.9.a *.mdb # https://github.com/NVIDIA/DALI_extra/tree/main/db/lmdb xinitrc # /etc/X11/xinit/xinitrc xserverrc # /etc/X11/xinit/xserverrc *.bash_logout # /etc/bash.bash_logout .xinitrc # ~/.xinitrc .xprofile # ~/.xprofile .pam_environment # ~/.pam_environment requirements.txt # python config file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure about these
m.insert(".zshrc", '\u{f489}'); // | ||
m.insert("Cargo.lock", '\u{e7a8}'); // | ||
m.insert("AUTHORS", '\u{f718}'); // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This symbol doesn't render for me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
they should render on the nerdfonts site: https://www.nerdfonts.com/cheat-sheet
I found it under 'document'
New name seems to be 'nf-md-file_document' (will be fixed with #9)
m.insert(".xinitrc", '\u{f489}'); // | ||
m.insert(".xprofile", '\u{f489}'); // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about these
m.insert("bin", '\u{e5fc}'); // | ||
m.insert("Cargo.lock", '\u{e7a8}'); // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this seems to be already present on main (at least it shows that icon when I run with --icons
)
@@ -81,12 +85,17 @@ lazy_static! { | |||
m.insert("hidden", '\u{f023}'); // | |||
m.insert("include", '\u{e5fc}'); // | |||
m.insert("lib", '\u{f121}'); // | |||
m.insert("LICENSE", '\u{f718}'); // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This symbol doesn't render for me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same document icon 'nf-md-file_document'
@@ -108,6 +117,7 @@ pub fn icon_for_file(file: &File<'_>) -> char { | |||
else if let Some(icon) = extensions.icon_file(file) { icon } | |||
else if let Some(ext) = file.ext.as_ref() { | |||
match ext.as_str() { | |||
"a" => '\u{f17c}', // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unsure what this even is
@@ -118,6 +128,7 @@ pub fn icon_for_file(file: &File<'_>) -> char { | |||
"awk" => '\u{f489}', // | |||
"bash" => '\u{f489}', // | |||
"bash_history" => '\u{f489}', // | |||
"bash_logout" => '\u{f489}', // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if this is optimal
github.com/ogham/exa/pulls/1119