Skip to content

Instantly share code, notes, and snippets.

View vbalien's full-sized avatar
🇰🇷

엘련(Jisu Kim) vbalien

🇰🇷
View GitHub Profile
did:3:kjzl6cwe1jw145dw1sp30z1d009axva8ehl2io9iymexupzev4tltm7nmz1e1os

Keybase proof

I hereby claim:

  • I am vbalien on github.
  • I am vbalien (https://keybase.io/vbalien) on keybase.
  • I have a public key whose fingerprint is E98C F73D E1E3 6F7D 1B8A 383A FD98 7F8D BE51 3071

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am vbalien on github.
  • I am vbalien (https://keybase.io/vbalien) on keybase.
  • I have a public key whose fingerprint is E98C F73D E1E3 6F7D 1B8A 383A FD98 7F8D BE51 3071

To claim this, I am signing this object:

C 1 min █████████████████████ 100.0%
YAML 0 secs ░░░░░░░░░░░░░░░░░░░░░ 0.0%
We couldn’t find that file to show.
@vbalien
vbalien / test.js
Created March 28, 2019 01:42
test
alert("test");
# List of plugins
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-pain-control'
set -g @plugin 'jimeh/tmux-themepack'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
@vbalien
vbalien / init.vim
Created June 13, 2016 15:36
my NeoVim settings
" ////////// Manage plugins ///////////
call plug#begin('~/.config/nvim/plugged')
" Make sure you use single quotes
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align
Plug 'junegunn/vim-easy-align'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'Xuyuanp/nerdtree-git-plugin'
@vbalien
vbalien / console.xml
Last active June 10, 2016 14:03
My Console2 Settings, Console2: https://sourceforge.net/projects/console/
<?xml version="1.0"?>
<settings>
<console change_refresh="10" refresh="100" rows="25" columns="80" buffer_rows="500" buffer_columns="0" shell="" init_dir="" start_hidden="0" save_size="0">
<colors>
<color id="0" r="20" g="20" b="20"/>
<color id="1" r="207" g="106" b="76"/>
<color id="2" r="131" g="144" b="97"/>
<color id="3" r="206" g="168" b="105"/>
<color id="4" r="117" g="135" b="166"/>
<color id="5" r="155" g="133" b="157"/>
@vbalien
vbalien / .vimrc
Created June 4, 2016 12:12
my vim settings
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'L9'