Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onlurking/termux
Dotfiles for Termux (tmux, zsh, and neovim)
https://github.com/onlurking/termux
Last synced: 16 days ago
JSON representation
Dotfiles for Termux (tmux, zsh, and neovim)
- Host: GitHub
- URL: https://github.com/onlurking/termux
- Owner: onlurking
- License: mit
- Created: 2017-05-22T20:37:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-02T04:03:59.000Z (about 4 years ago)
- Last Synced: 2024-08-03T21:02:08.615Z (3 months ago)
- Language: Vim script
- Homepage:
- Size: 134 KB
- Stars: 120
- Watchers: 12
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Termux Dotfiles
Installation | Screenshot
:-------------------------:|:-------------------------:
|# Requirements
Install curl first:
```bash
apt update && apt -y upgrade && apt install -y curl
```# Installation
Just paste the following code into Termux and adjust the parameters to customize what the script will install:
```bash
curl -fsSL https://git.io/termux | bash -s -- --zsh --python --neovim
```# Script parameters
**-pg** or **--postgres** setup a postgres installation (optional **pgcli** install)
**-p** or **--python** setup a python installation
**-r** or **--ruby** setup a ruby installation (includes pry)
**-g**, **--go** or *--golang* setup a golang installation
**-js** or **--nodejs** setups nodejs (optional yarn install)
**-t** or **--tmux** setups tmux
**-n** or **--neovim** setups neovim
**--php** setups php
**-z** or **--zsh** setups zsh (optional syntax-highlight and auto-sugestions)
**-e** or **--elixir** setup a erlang, and elixir installation# Security
`https://git.io/termux` is a short url which resolves to
`https://raw.githubusercontent.com/onlurking/termux/master/termux.sh`Piping commands from internet to shell is considered bad practice,
and there is lot of discussion on the internet:
- [Hacker News Discussion](https://news.ycombinator.com/item?id=12766049)
- [Don't Pipe to your Shell](https://www.seancassidy.me/dont-pipe-to-your-shell.html)
- [The Truth About Curl and Installing Software Securely on Linux](https://medium.com/@esotericmeans/the-truth-about-curl-and-installing-software-securely-on-linux-63cd12e7befd)
but I did this anyway because of the convenience factor (there is no way to be more straightforward than this),
please, feel free to review the [installer code](https://git.io/termux) and open an Issue.