Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hugopl/tijolo
Simple and fast keyboard focused IDE written in Crystal and GTK.
https://github.com/hugopl/tijolo
crystal development-environment gtk ide language-server-client text-editor
Last synced: 2 months ago
JSON representation
Simple and fast keyboard focused IDE written in Crystal and GTK.
- Host: GitHub
- URL: https://github.com/hugopl/tijolo
- Owner: hugopl
- License: mit
- Created: 2020-04-28T18:58:09.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T13:56:21.000Z (4 months ago)
- Last Synced: 2024-11-14T11:04:05.812Z (2 months ago)
- Topics: crystal, development-environment, gtk, ide, language-server-client, text-editor
- Language: Crystal
- Homepage:
- Size: 6.47 MB
- Stars: 144
- Watchers: 15
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Tijolo
Lightweight, keyboard-oriented IDE for the masses.
[![AUR](https://img.shields.io/aur/version/tijolo)](https://aur.archlinux.org/packages/tijolo)
![Build Status](https://github.com/hugopl/tijolo/actions/workflows/ci.yml/badge.svg?branch=main)## Project status
Basic stuff still missing, use it at your own risk 🔥️.
Currently it uses the GtkSourceView as code widget, but due to limitations
of GtkSOurceView I plan to embed neovim in Tijolo, so Tijolo would only take care
of the split panes and start a nvim instance with tijolo's own init files.I started to code a code widget... but it's too much work for my spare time.
## How it looks like?
See more [screenshots](https://github.com/hugopl/tijolo/tree/master/screenshots).
## Project goals
- Run fast, something you don't see very often in new desktop applications.
- Have a simple distraction free UI.
- Keyboard focused user interface.
- Easy/fast code navigation.
- ♥️ Git.
- ♥️ [tree-sitter](https://tree-sitter.github.io/tree-sitter/).## Installing
### Archlinux
There's a AUR package for every release.
```
$ yay -S tijolo
```There's also AUR package available for latest git version, named `tijolo-git`.
### Ubuntu
There should be a home made Ubuntu package for every release, check the
[github release page](https://github.com/hugopl/tijolo/releases).If you want to create a package from git, clone the repository then run `./packages/make-ubuntu-package`, this will generate
a docker image, build Tijolo inside that image, create a debian package then copy it back, out of the container. Not best
approach to build a deb package but works on non-deb machines.## Dependencies
You will need:
- Crystal compiler version >= 1.10.0.
- GTK4 >= 4.8.
- LibAdwaita >= 1.4.
- GTKSourceView5.
- [Vte4](https://gitlab.gnome.org/GNOME/vte).
- GIR packages for these GTK libraries.## Compiling from Source
```
$ make
$ sudo make install
```Tijolo use [JetBrains Mono](https://www.jetbrains.com/lp/mono/) font, you can _make install_ them if you don't already have
them installed:```
$ sudo make install-fonts
```To uninstall:
```
$ sudo make uninstall uninstall-fonts
```To update GTK4 icon cache and compile gschema files run:
```
$ make post-install
```## Usage
Pass a directory of a file under a git repository to open a project. Just call it without arguments to see a list of available projects.
## Contributing
1. Fork it ()
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull RequestAny ideas/suggestions, fill in an issue.
## Contributors
- [Hugo Parente Lima](https://github.com/hugopl) - creator and maintainer