dotfiles/README.md

69 lines
1.3 KiB
Markdown
Raw Normal View History

2020-05-22 02:19:38 +02:00
# .dotfiles
These are my personal dotfiles.
Main tools I am currently using are:
2022-01-24 05:06:33 +01:00
- zsh
- gvim
2020-05-22 02:19:38 +02:00
- byobu
2022-01-24 05:06:33 +01:00
- conky
- firefox
- rxvt-unicode
- dunst
- highlight
2020-05-22 02:19:38 +02:00
- i3-gaps
2022-01-24 05:06:33 +01:00
- neofetch
2020-05-22 02:19:38 +02:00
- ranger
- rofi
2022-01-24 05:06:33 +01:00
- emacs
- polybar
- termite
2020-05-22 02:19:38 +02:00
## Getting started
2020-05-22 03:01:50 +02:00
To make full use of the dotfiles we need to install the following packages via pacman:
2022-01-24 05:06:33 +01:00
`pacman -Syu zsh gvim byobu conky firefox rxvt-unicode dunst highlight i3-gaps neofetch ranger rofi emacs`
2020-05-22 03:01:50 +02:00
And the following packages from the AUR:
2022-01-24 05:06:33 +01:00
`yay -S polybar termite`
2020-05-22 03:01:50 +02:00
### zsh setup
```sh
chsh -s /bin/zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
cp -r /usr/share/zsh-theme-powerlevel9k $HOME/.oh-my-zsh/themes/powerlevel9k
rm -rf $HOME/.*bash* # optional, but removes all bash related stuff from the home directory
```
2020-05-22 02:19:38 +02:00
### Font setup
Since we're using a powerline font we need to install them first.
2020-05-22 02:19:38 +02:00
```sh
git clone https://github.com/powerline/fonts.git --depth=1
./fonts/install.sh
rm -rf fonts/
```
### Installing the dotfiles
To deploy the .dotfiles we use the tool stow.
```sh
git clone https://github.com/TuDatTr/dotfiles .dotfiles && cd .dotfiles
stow vim
stow zsh
stow config
```
## Author
- Tuan-Dat Tran - [TuDatTr](https://github.com/TuDatTr/)
## License
2020-05-22 03:01:50 +02:00
This project is licensed under the GPL-3.0 License - see LICENSE file for details.