Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazutoshiyoc/dotfiles
https://github.com/kazutoshiyoc/dotfiles
dotfiles git vim vimrc
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kazutoshiyoc/dotfiles
- Owner: Kazutoshiyoc
- Created: 2020-09-30T08:56:09.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-15T10:03:19.000Z (about 1 year ago)
- Last Synced: 2023-08-15T11:38:50.178Z (about 1 year ago)
- Topics: dotfiles, git, vim, vimrc
- Language: Vim Script
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```