Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bvinc/gxi
GTK frontend for the xi text editor, written in rust
https://github.com/bvinc/gxi
Last synced: about 1 month ago
JSON representation
GTK frontend for the xi text editor, written in rust
- Host: GitHub
- URL: https://github.com/bvinc/gxi
- Owner: bvinc
- License: mit
- Created: 2017-04-17T00:33:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-21T19:57:36.000Z (over 4 years ago)
- Last Synced: 2024-10-31T22:34:26.718Z (about 2 months ago)
- Language: Rust
- Size: 396 KB
- Stars: 100
- Watchers: 8
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gxi
GTK frontend, written in Rust for the [xi editor](https://github.com/google/xi-editor).gxi is a work in progress!
![screenshot](https://raw.githubusercontent.com/bvinc/gxi/master/screenshot.png)
## Instructions
You need to have the Rust compiler installed. I recommend using [rustup](https://rustup.rs/).
### Installing dependencies on Debian/Ubuntu
```sh
sudo apt-get install libgtk-3-dev
```### Installing dependencies on Redhat
```sh
sudo yum install gtk3-devel
```### Enabling the syntect syntax highlighting plugin
Running these commands will put the syntect plugin into your `~/.config/xi/plugins` directory.
```sh
git clone https://github.com/google/xi-editor/
cd xi-editor/rust/syntect-plugin/
make install
```### Running gxi
```sh
git clone https://github.com/bvinc/gxi.git
cd gxi
cargo run
```