This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " Setting Minimalist Vim Plugin Manager | |
| if empty(glob('~/.vim/autoload/plug.vim')) | |
| silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
| \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
| autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
| endif | |
| call plug#begin('~/.vim/plugged') | |
| " Plug 'phpactor/phpactor', {'for': 'php', 'tag': '*', 'do': 'composer install --no-dev -o'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function dc() { | |
| local cid | |
| cid=$(docker ps --format '{{.ID}} {{.Names}} {{.Image}}' | fzf -q "$1" | awk '{print $1}') | |
| [ -n "$cid" ] && docker exec -it "$cid" bash | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = example | |
| email = [email protected] | |
| [core] | |
| excludesfile = ~/.gitignore | |
| autocrlf = input | |
| editor = vim | |
| [color] | |
| ui = auto | |
| [column] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Names] | |
| count=1 | |
| name0=umatch | |
| [umatch] | |
| text(bold)=f9f8f5 | |
| magenta(bold)=e1a3ee | |
| text=f9f8f5 | |
| white(bold)=f9f8f5 | |
| green=689312 | |
| red(bold)=deaf8f |