https://github.com/sayanarijit/material-landscape2.xplr
xplr theme - Material Landscape 2
https://github.com/sayanarijit/material-landscape2.xplr
Last synced: 7 months ago
JSON representation
xplr theme - Material Landscape 2
- Host: GitHub
- URL: https://github.com/sayanarijit/material-landscape2.xplr
- Owner: sayanarijit
- License: mit
- Created: 2021-06-24T03:26:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-19T11:35:59.000Z (over 3 years ago)
- Last Synced: 2025-03-19T06:04:52.341Z (7 months ago)
- Language: Lua
- Homepage: https://xplr.dev
- Size: 7.81 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://gifyu.com/image/58oh)
## 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/sayanarijit/material-landscape2.xplr ~/.config/xplr/plugins/material-landscape2
```- Require the module in `~/.config/xplr/init.lua`
```lua
require("material-landscape2").setup()# Or
require("material-landscape2").setup{
keep_default_layout = true
}
```