Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prncss-xyz/icons.xplr
icon theme for xplr file manager
https://github.com/prncss-xyz/icons.xplr
Last synced: 9 days ago
JSON representation
icon theme for xplr file manager
- Host: GitHub
- URL: https://github.com/prncss-xyz/icons.xplr
- Owner: prncss-xyz
- License: mit
- Created: 2021-07-13T01:40:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-09T00:22:33.000Z (over 2 years ago)
- Last Synced: 2023-03-10T04:26:49.784Z (over 1 year ago)
- Language: Lua
- Homepage:
- Size: 14.6 KB
- Stars: 12
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
An icon theme (do nothing about colors) for [xplr](https://github.com/sayanarijit/xplr).
Based on [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) with some input from [nnn](https://github.com/jarun/nnn). Text formats are well covered. Binary formats still needs some attention.
## Requirements
- [A patched font](https://www.nerdfonts.com/)
## Installation
### Install manually
- Add the following line in `~/.config/xplr/init.lua`
```lua
local home = os.getenv("HOME")
package.path = home
.. "/.config/xplr/plugins/?/init.lua;"
.. home
.. "/.config/xplr/plugins/?.lua;"
.. package.path
```- Clone the plugin
```bash
mkdir -p ~/.config/xplr/pluginsgit clone https://github.com/prncss-xyz/icons.xplr ~/.config/xplr/plugins/icons
```- Require the module in `~/.config/xplr/init.lua`
```lua
require"icons".setup()
```