Skip to content

Instantly share code, notes, and snippets.

@m-note
m-note / R markdown 初期設定.r
Last active January 26, 2016 04:27
Rmarkdown 初期設定
---
title: " "
author: " "
output:
html_document:
toc: false
number_sections: true
fig_width: 4.5
fig_height: 4.5
---
@aldente39
aldente39 / .vimrc
Created January 7, 2012 10:27
To compile & run by F5 (Vim)
"実行コマンド
command! Run call s:Run()
nmap <F5> :Run<CR>
function! s:Run()
let e = expand("%:e")
if e == "c"
:Gcc
endif
if e == "py"
:Python