2018-12-06 20:04:35 +01:00
|
|
|
# My Dotfiles with an installer
|
|
|
|
|
|
|
|
These are just my own config files for various applications like atom, vim and zsh...
|
|
|
|
It also contains an installation script "setup.sh" to easily apply all of the settings and install some needed tools like
|
|
|
|
Vundle.
|
|
|
|
|
|
|
|
## Usage
|
2019-01-19 15:16:57 +01:00
|
|
|
Make sure you have these packages installed:
|
|
|
|
- atom
|
|
|
|
- vim
|
|
|
|
- zsh
|
|
|
|
- oh-my-zsh
|
|
|
|
- tmux
|
|
|
|
- tmuxinator
|
|
|
|
- the_silver_surfer
|
|
|
|
- powerline-fonts
|
|
|
|
- fzf
|
2018-12-06 20:04:35 +01:00
|
|
|
If you want to install and apply all of the settings you just need to run:
|
|
|
|
```
|
|
|
|
cd ~
|
|
|
|
git clone https://github.com/saibotk/.dotfiles
|
|
|
|
./setup.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
## Atom packages
|
|
|
|
If you plan on using you own atom package list, you can modify the "atom/packages.list".
|
|
|
|
The install script will try to find that file and automatically install all packages.
|
|
|
|
|
|
|
|
You can export the package list with:
|
|
|
|
```
|
2019-01-19 13:53:40 +01:00
|
|
|
apm list --installed --bare > ~/.dotfiles/.atom/packages.list
|
2018-12-06 20:04:35 +01:00
|
|
|
```
|
|
|
|
|