This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| call dein#add('Shougo/neosnippet.vim') | |
| call dein#add('Shougo/neosnippet-snippets') | |
| call dein#add('Shougo/deoplete.nvim') | |
| call dein#add('zchee/deoplete-jedi') | |
| call dein#add('rking/ag.vim') | |
| call dein#add('bling/vim-airline') | |
| call dein#add('terryma/vim-expand-region') | |
| call dein#add('tpope/vim-surround') | |
| call dein#add('tpope/vim-repeat') | |
| call dein#add('kien/ctrlp.vim') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while true; do | |
| xdotool mousemove 1500 1100 | |
| xdotool click 1 | |
| xdotool mousemove 1200 1200 | |
| xdotool click 1 | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set -g prefix C-a | |
| # start windows and panes at 1, not 0 | |
| set -g base-index 1 | |
| set -g pane-base-index 1 | |
| set -g status-justify centre | |
| setw -g monitor-activity on | |
| set -g visual-activity on | |
| set-option -g pane-border-fg colour235 #base02 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set shell=/bin/bash | |
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " Plugin 'chriskempson/base16-vim' | |
| " Bundle 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim'} | |
| Plugin 'rking/ag.vim' | |
| Plugin 'bling/vim-airline' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file has been auto-generated by i3-config-wizard(1). # It will not be overwritten, so edit it as you like. | |
| # | |
| # Should you change your keyboard layout somewhen, delete | |
| # this file and re-run i3-config-wizard(1). | |
| # | |
| # i3 config file (v4) | |
| # | |
| # Please see http://i3wm.org/docs/userguide.html for a complete reference! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set shell=/bin/bash | |
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'rking/ag.vim' | |
| Plugin 'terryma/vim-expand-region' | |
| Plugin 'gmarik/Vundle.vim' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python2.7 | |
| import i3 | |
| outputs = i3.get_outputs() | |
| # set current workspace to output 0 | |
| i3.workspace(outputs[0]['current_workspace']) | |
| # ..and move it to the other output. | |
| # outputs wrap, so the right of the right is left ;) |