guest@termux:~$ cat best-termux-settings-to-change-first.md
Best Termux Settings To Change First
Improve your Termux experience with these important settings every beginner should change after installation.
Update Packages First
Before changing anything, update all packages.
pkg update && pkg upgrade -y
This prevents many common issues.
Enable Storage Access
Allow Termux to access your files.
termux-setup-storage
Tap:
Allow
when Android asks for permission.
Change Package Mirror
A faster mirror improves download speed.
Run:
termux-change-repo
Choose a nearby mirror server.
Enable Extra Keys Row
The extra keys row adds useful buttons like:
- CTRL
- ESC
- TAB
- Arrow keys
Create the config folder:
mkdir -p ~/.termux
Create the config file:
nano ~/.termux/termux.properties
Add this:
extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'],['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]
Save the file and reload settings:
termux-reload-settings
Install a Better Text Editor
Nano is beginner-friendly and easier to use.
pkg install nano -y
Install Basic Tools
Useful packages every beginner should install:
pkg install git curl wget python -y
Change Terminal Font Size
Open:
Termux → Settings → Font Size
Increase the font size for better readability.
Enable Dark Theme
Go to:
Termux → Settings → Colors
Choose a dark color scheme that feels comfortable.
Prevent Android From Killing Termux
Some Android devices stop Termux in the background.
Disable battery optimization for Termux:
Settings → Apps → Termux → Battery → Unrestricted
This helps long-running scripts work properly.
Verify Everything Works
Test Python:
python --version
Test Git:
git --version
If version numbers appear, your setup is working correctly.
Final Thoughts
These small settings make Termux much easier and more comfortable to use.
After this setup, you can start:
- Learning Linux commands
- Installing packages
- Writing scripts
- Programming on Android
guest@termux:~$ whoami
guest@termux:~$ subscribe --email you@example.com
Get new guides delivered to your inbox. No spam, unsubscribe anytime.
guest@termux:~$ grep -l 'related' /guides/*.md
- -rw-r--r--2 min2026-05-08Best Termux Themesbest-termux-themes.md2 min · 2026-05-08Customize your terminal with the best Termux themes for a cleaner and more modern Linux experience on Android.#customization#themes#beginner
- -rw-r--r--2 min2026-05-08How To Install Termux Safelyhow-to-install-termux-safely.md2 min · 2026-05-08Learn the safest way to install Termux on Android using trusted sources like F-Droid and GitHub.#termux#installation#beginner#android
- -rw-r--r--2 min2026-05-08Termux Setup Guide For Beginnerstermux-setup-guide-for-beginners.md2 min · 2026-05-08Learn how to properly set up Termux on Android with essential commands and beginner-friendly configuration steps.#beginner#setup#android#packages