https://github.com/kanchishimono/dotfiles
https://github.com/kanchishimono/dotfiles
dotfiles
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kanchishimono/dotfiles
- Owner: KanchiShimono
- Created: 2016-11-16T16:57:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-01T13:34:06.000Z (10 months ago)
- Last Synced: 2025-01-26T17:13:37.040Z (9 months ago)
- Topics: dotfiles
- Language: Shell
- Size: 232 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles
Automatically set up my development environment.
## Requirements
- Xcode
- You have to start up Xcode once, after install Xcode. Then, agree to Xcode Licence Agreement and install System Component Installation.
- Git
- Cmake or GNU make
- Bash
- curl
## Installation
Run following command in bash.
```sh
bash -c "`curl -fsSL https://raw.githubusercontent.com/KanchiShimono/dotfiles/master/install.sh`"
```
After then, you have to run following git command. Because installed git configuration file is set for only me, so you should change configuration for yours.
```sh
git config --global core.excludesfile ~/.gitignore_global
git config --global user.name "Your Name"
git config --global user.email your-email-address@example.com
```
## Manual tasks
- Change modifier keys (⌘: command, ⌥: option, ⇪: caps lock, ⇧: shif, ⌃: control)
- [English](https://support.apple.com/kb/PH25240?locale=en_US&viewlocale=en_US)
- [Japanese](https://support.apple.com/kb/PH25240?viewlocale=ja_JP&locale=ja_JP)
- [Change a key repeats](https://support.apple.com/kb/PH26213?locale=ja_JP&viewlocale=en_US)
- Set up Google Japanese IME, Keyhac and Microsoft Word template configuration
- Configuration files are contained in google_japanese, keyhac and word directory in this repository
- [If you use Neovim 0.1.7 older, CTRL-H key mapping doesn't work.](https://github.com/neovim/neovim/wiki/FAQ#my-ctrl-h-mapping-doesnt-work)
Run following command
```sh
infocmp $TERM | sed 's/kbs=^[hH]/kbs=\\177/' > $TERM.ti
tic $TERM.ti
```
- Install fonts for lightline. See [here](https://github.com/Lokaltog/vim-powerline/tree/develop/fontpatcher#os-x) and once generate patched font.
- Create symbolic links VS Code setting files
```sh
ln -s ~/dev/src/github.com/KanchiShimono/dotfiles/VSCode/settings.json ~/Library/Application\ Support/Code/User
ln -s ~/dev/src/github.com/KanchiShimono/dotfiles/VSCode/keybindings.json ~/Library/Application\ Support/Code/User
```