-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtermux_setup.sh
47 lines (38 loc) · 1.34 KB
/
termux_setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Update
pkg update -y && pkg install -y wget git
# Install Termux Settings
mkdir -p ~/.config ~/.termux
echo '
# Termux Keyboard Config
extra-keys = []
# Make Termux Dark Mode
use-black-ui=true
# Make Termux Full Screen
fullscreen=true
terminal-margin-vertical=5
terminal-margin-horizontal=5
' >~/.termux/termux.properties
#get font
wget 'https://github.com/termux/termux-styling/raw/refs/heads/master/app/src/main/assets/fonts/Source-Code-Pro.ttf' -O ~/.termux/font.ttf
# get colors
wget 'https://github.com/termux/termux-styling/raw/refs/heads/master/app/src/main/assets/colors/ros%C3%A9-pine.properties' -O ~/.termux/colors.properties
termux-reload-settings
# Install Proot Distro
pkg install -y proot-distro
# Install Neovim
pkg install -y cmake fish fzf wget lazygit fd ripgrep
pkg install -y neovim
# git config
git config --global credential.helper store
# Install LazyVim
mv ~/.config/nvim{,.bak}
mv ~/.local/share/nvim{,.bak}
mv ~/.local/state/nvim{,.bak}
mv ~/.cache/nvim{,.bak}
git clone https://github.com/LazyVim/starter ~/.config/nvim
rm -rf ~/.config/nvim/.git
# Install Oh My Fish
curl https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install | fish
# bash -c "$(curl -fsSL https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh)"
# Install Success Complete
echo Installation Successfully Completed...