https://github.com/20lives/dotfiles
My personal dotfiles and config files for: Vim, i3, Zsh...
https://github.com/20lives/dotfiles
Last synced: over 1 year ago
JSON representation
My personal dotfiles and config files for: Vim, i3, Zsh...
- Host: GitHub
- URL: https://github.com/20lives/dotfiles
- Owner: 20lives
- Created: 2016-10-14T09:37:33.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-10-29T21:31:47.000Z (almost 8 years ago)
- Last Synced: 2025-01-22T11:14:09.157Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Twentylives dotfiles
## Vim
1. Clone this repository and create a symbolic link to the vimrc file
```
git clone https://github.com/20lives/dotfiles.git
cd dotfiles
ln -sf $(pwd -P)/vimrc ~/.vimrc
```
2. Install [vim-plug] by running the following command
```
curl -fLo curl ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
```
3. Run vim and `:PlugInstall` to install all plugins.
## i3
1. Clone this repository and create a symbolic link to the vimrc file
```
git clone https://github.com/20lives/dotfiles.git
cd dotfiles
ln -sf $(pwd -P)/i3config ~/.config/i3/config
```
2. Restart i3 to load new configs with ALT+SHIFT+R keybinding.
## oh-my-zsh
1. Run the following command:
```
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
```
2. Clone this repository and create a symbolic link to the zshrc file
```
git clone https://github.com/20lives/dotfiles.git
cd dotfiles
ln -sf $(pwd -P)/zshrc ~/.zshrc
```