Skip to content

Instantly share code, notes, and snippets.

View hieuvo's full-sized avatar
🎯

Hieu Vo hieuvo

🎯
  • KyberNetwork, exTCB, exGrab, exLazada
  • HCM, Vietnam
  • 12:24 (UTC +07:00)
View GitHub Profile
syntax enable
set path=$PWD/**
filetype plugin indent on
set background=dark
colorscheme monokai
colors koehler
autocmd FileType crontab setlocal nowritebackup
set nocompatible
set number
set modelines=0
@johnpolacek
johnpolacek / .gitconfig
Last active May 8, 2024 04:05
My current .gitconfig aliases
[alias]
co = checkout
cob = checkout -b
coo = !git fetch && git checkout
br = branch
brd = branch -d
brD = branch -D
merged = branch --merged
st = status
aa = add -A .