git clone http://github.com/bulletmark/libinput-gestures
cd libinput-gestures
sudo make install
sudo apt-get install xdotool wmctrl libinput-tools
sudo gpasswd -a $USER input
libinput-gestures-setup autostart
copy the conf file to ~/.config/
/** | |
* Creates a formatter for JSON.stringify that prevents from circular structures and not stringify-able values | |
*/ | |
function safeJsonReplacer() { | |
const seen = new Set(); | |
return (key, val) => { | |
// prevent from circular structures | |
if (typeof val === 'object' && val !== null) { |
[general] | |
cfg_schema = 1 | |
ModMask = <Ctrl><Alt> | |
MovementsWrap = False | |
ColumnCount = 3 | |
[keys] | |
Insert = maximize | |
Prior = top-right |
# simple aliases | |
alias cdw='cd ~/Workspace' # open workspace directory | |
alias n='ntl -i' | |
# functions | |
function mkcd () { mkdir -p "$1"; cd "$1"; } # create & open a directory |
# this is the content of my ~/.vim/ directory | |
$ tree -L 2 ~/.vim | |
/home/zezen/.vim | |
├── autoload | |
│ └── pathogen.vim | |
├── bundle | |
│ ├── emmet-vim | |
│ ├── nerdtree | |
│ ├── vim-airline |
git clone http://github.com/bulletmark/libinput-gestures
cd libinput-gestures
sudo make install
sudo apt-get install xdotool wmctrl libinput-tools
sudo gpasswd -a $USER input
libinput-gestures-setup autostart
copy the conf file to ~/.config/
# Load the oh-my-zsh's library. | |
antigen use oh-my-zsh | |
# Bundles from the default repo (robbyrussell's oh-my-zsh) | |
antigen bundle git | |
antigen bundle pip | |
antigen bundle docker | |
antigen bundle nvm | |
antigen bundle npm |
<template> | |
<div> | |
<div>{{ $t('simple') }}</div> | |
<div><button @click="test = 'simple'">{{$t(test)}}</button></div> | |
<div>{{ $t('complicated', {nb: 3, things, feeling: 'bon', noneed: 'nothing'}) }}</div> | |
<div>{{ fromData }}</div> | |
<div><pre>{{ $t('plainObject') }}</pre></div> | |
</div> | |
</template> |