Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kazutoshiyoc/dotfiles


https://github.com/kazutoshiyoc/dotfiles

dotfiles git vim vimrc

Last synced: 9 days ago
JSON representation

Awesome Lists containing this project

README

        

# dotfiles

## Usage
```
$ ./setup.sh
```

## Customize
```
[ Enable git diff on VIM ]
$ git config --global diff.tool vimdiff
$ git config --global difftool.prompt false

[ Disable git diff on VIM ]
$ vi ~/.gitconfig

# Remove the below lines
[diff]
tool = vimdiff
[difftool]
prompt = false
```
```
[ Set alias of git command ]
$ git config --global alias.st status

[ Un-Set alias of git command ]
$ vi ~/.gitconfig

# Remove the below lines
[alias]
st = status
```