Skip to content

Instantly share code, notes, and snippets.

View KimChunsick's full-sized avatar
🤿
DEEP DIVING..

Deokwon Kim KimChunsick

🤿
DEEP DIVING..
View GitHub Profile
@KimChunsick
KimChunsick / .vimrc
Created May 17, 2020 09:34
my vim config
" Plugins will be downloaded under the specified directory.
call plug#begin('~/Tools/plugged')
" Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
Plug 'posva/vim-vue'
Plug 'mxw/vim-jsx'
Plug 'pangloss/vim-javascript'
@KimChunsick
KimChunsick / .tmux.conf
Created May 17, 2020 09:29
my tmux config
set -s escape-time 0
set -g repeat-time 0
set -g prefix C-s
set-window-option -g mode-keys vi
set-window-option -g automatic-rename on
# move around panes with hjkl, as one would in vim after pressing ctrl-w
bind h select-pane -L
bind j select-pane -D
@KimChunsick
KimChunsick / .gitconfig
Last active December 16, 2023 07:04
my git configs
[alias]
co = checkout
br = branch
st = status
ci = commit
graph = log --graph --abbrev-commit --decorate --format=format:'%C(cyan)%h%C(reset) - %C(green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(yellow)%d%C(reset)' --all
unstage = reset HEAD --
uncommit = reset --soft HEAD^
alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ /
gone = ! git fetch -p && git for-each-ref --format '%(refname:short) %(upstream:track)' | awk '$2 == \"[gone]\" {print $1}' | xargs -r git branch -D