Skip to content

Instantly share code, notes, and snippets.

@hongsii
hongsii / gist:08e2d3a53c2e7fba7e8890e9dc0b56de
Created December 26, 2018 13:59
init jekyll post script
#! /bin/sh
# define global variable
BLOG_PATH=~/blog/hongsii.github.io
TEMP_POST_PATH=$BLOG_PATH/_drafts
read -p "타이틀 : " title
post=$TEMP_POST_PATH/$title.md
@hongsii
hongsii / vimrc
Created May 24, 2018 01:18
my vim configuration
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
"Plugin 'vim-airline/vim-airline'
"Plugin 'vim-airline/vim-airline-themes'
Plugin 'airblade/vim-gitgutter'