Skip to content

Commit 038584b

Browse files
committed
Inital commit
0 parents  commit 038584b

File tree

8 files changed

+663
-0
lines changed

8 files changed

+663
-0
lines changed

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# dotfiles
2+
3+
- fish shell with fisherman
4+
- karabiner with JIS and mouse button remap
5+
6+
## Usage
7+
8+
Installing fish config
9+
10+
```
11+
stow -vvt $HOME fish --ignore .DS_Store
12+
```
13+
14+
Installing config for VSCode. See https://github.com/Microsoft/vscode/issues/3884
15+
16+
```
17+
stow -vvt "$HOME/Library/Application Support/Code/User" vscode --ignore .DS_Store
18+
```
19+
20+
## Other dotfiles
21+
22+
* https://dotfiles.github.io

bundle/.bundle/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_JOBS: "4"

fish/.config/fish/config.fish

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
set -g theme_color_scheme base16-dark
2+
set -x EDITOR nvim
3+
4+
# alias
5+
abbr c "git commit -am"
6+
abbr gd "git diff"
7+
abbr gs "git status"
8+
abbr v nvim
9+
10+
# go
11+
set -x GOPATH ~/Projects/Go/
12+
set -x PATH $GOPATH/bin $PATH
13+
14+
# autojump
15+
[ -f /usr/local/share/autojump/autojump.fish ]; and source /usr/local/share/autojump/autojump.fish
16+
alias j="cd (cat ~/Library/autojump/autojump.txt | sort -nr | awk '{print \$2}' | fzf +s)"
17+
18+
# fzf
19+
set -x FZF_DEFAULT_COMMAND 'rg --files --no-ignore --hidden --follow -g "!{.git,node_modules}/*" 2> /dev/null'
20+
set -x FZF_DEFAULT_OPTS "--height 40% --reverse --border"
21+
set -x FZF_CTRL_T_COMMAND $FZF_DEFAULT_COMMAND
22+

fish/.config/fish/fishfile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
fisherman/await
2+
edc/bass
3+
oh-my-fish/theme-bobthefish
4+
oh-my-fish/plugin-brew
5+
barnybug/docker-fish-completion
6+
fisherman/fzf
7+
fisherman/get
8+
fisherman/getopts
9+
fisherman/last_job_id
10+
fisherman/nvm
11+
fisherman/rbenv

0 commit comments

Comments
 (0)