mirror of https://github.com/einverne/dotfiles.git
Ein Verne
2 years ago
committed by
GitHub
10 changed files with 82 additions and 41 deletions
@ -12,6 +12,17 @@ Set up using dotbot:
|
||||
# under macOS |
||||
make macos |
||||
|
||||
## Termux setup |
||||
Install dependency first: |
||||
|
||||
pkg install make python vim git |
||||
|
||||
then: |
||||
|
||||
git clone [email protected]:einverne/dotfiles.git |
||||
cd dotfiles |
||||
make termux |
||||
|
||||
## Overview |
||||
|
||||
- using [dotbot](https://github.com/anishathalye/dotbot/) to manage dotfiles, [read more](https://blog.einverne.info/post/2020/08/use-dotbot-dotfiles-management.html) |
||||
|
@ -0,0 +1,22 @@
|
||||
- shell: |
||||
- description: backup .termux |
||||
command: | |
||||
mv "$HOME/.termux" "$HOME/.termux.bak.$(date +%Y.%m.%d-%H:%M:%S)" |
||||
- description: install tools |
||||
command: | |
||||
pkg install -y termux-tools libcurl wget curl openssh vim git zsh unrar unzip less tree htop tsu neofetch fzf ncurses-utils |
||||
|
||||
- link: |
||||
~/.termux: |
||||
path: termux/.termux |
||||
|
||||
- shell: |
||||
- description: Clone zinit |
||||
quiet: true |
||||
command: | |
||||
if cd ~/.zinit/bin; |
||||
then git pull; |
||||
else git clone https://github.com/zdharma-continuum/zinit.git ~/.zinit/bin; fi |
||||
- chsh -s zsh |
||||
- termux-reload-settings |
||||
- echo "Done!" |
@ -0,0 +1 @@
|
||||
extra-keys = [['ESC','/','|','HOME','UP','END','PGUP'],['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']] |
Loading…
Reference in new issue