Skip to content

Instantly share code, notes, and snippets.

View nicolas-marien's full-sized avatar
🦁
¯⁠\_(ツ)_/⁠¯

Nicolas Marien nicolas-marien

🦁
¯⁠\_(ツ)_/⁠¯
View GitHub Profile
# curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
# https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
call plug#begin('~/.vim/plugged')
Plug 'rakr/vim-one'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
call plug#end()
syntax on
colorscheme one
@nicolas-marien
nicolas-marien / vscodepackages.txt
Last active February 19, 2018 07:17
vscode packages
CoenraadS.bracket-pair-colorizer
EditorConfig.EditorConfig
PeterJausovec.vscode-docker
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
codezombiech.gitignore
dbaeumer.vscode-eslint
donjayamanne.githistory
eamodio.gitlens
flowtype.flow-for-vscode
@nicolas-marien
nicolas-marien / vscode-iife.json
Last active November 10, 2016 06:47
VSCode iife snippet
{
"Immediatly Invoked Function Expression": {
"prefix": "iife",
"body": [
"(function () {",
" $1",
"}());"
]
}
}