/dotfiles

My dotfiles. Customizations for Git, Vim and Zsh.

Primary LanguageVim Script

dotfiles

Installation

Download and install these tools:

Deployment

Clone this repository:

git clone https://github.com/Chienweichih/dotfiles.git

Using Dotbot to install dotfiles, or manual execute commands that write in install.conf.yaml

Other setting

Update Vim package

vim -c "PackUpdateQuit"

Copy gitconfig to $HOME, and modify [user], [diff], [merge]

cp dotfiles/gitconfig ~/.gitconfig

For ripgrep usage, gitignore should place at default path:

~/.config/git/ignore

Appendix

Install program using Autotools:

./configure --prefix=$HOME/usr
make
make install

Install program using CMake:

cmake -DCMAKE_INSTALL_PREFIX:PATH=$HOME/usr .
make all install

Create symlinks:

ln -s /mnt/chromeos/MyFiles/ ~/MyFiles