Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/y011d4/dotfiles
My dotfiles for nvim, fish and i3wm etc. OS: manjaro, WM: i3-wm, Editor: nvim, Shell: fish
https://github.com/y011d4/dotfiles
alacritty dotfiles fish i3wm nvim sage venv xonsh
Last synced: 3 months ago
JSON representation
My dotfiles for nvim, fish and i3wm etc. OS: manjaro, WM: i3-wm, Editor: nvim, Shell: fish
- Host: GitHub
- URL: https://github.com/y011d4/dotfiles
- Owner: y011d4
- License: mit
- Created: 2023-01-16T12:44:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T10:20:47.000Z (4 months ago)
- Last Synced: 2024-10-19T13:58:39.308Z (3 months ago)
- Topics: alacritty, dotfiles, fish, i3wm, nvim, sage, venv, xonsh
- Language: Lua
- Homepage:
- Size: 119 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
Awesome Lists containing this project
README
# dotfiles
## Prerequisites
TODO
## Install
I adopt a technique [here](https://www.atlassian.com/git/tutorials/dotfiles).
Execute the following bash script.```bash
git clone --bare https://github.com/y011d4/dotfiles.git $HOME/.dotfiles.git
alias dotfiles="git --git-dir=$HOME/.dotfiles.git --work-tree=$HOME"
dotfiles config status.showuntrackedfiles no
dotfiles checkout
# if some files are conflicted, make backup and then checkout
if [ $? -ne 0 ]; then
for i in $(dotfiles checkout 2>&1 | head -n -2 | awk 'NR>1{print $1}'); do
mv $i $i.bk
done
dotfiles checkout
fi
```## Enabling tig
```bash
dotfiles config alias.tig "!tig"
dotfiles tig
```