Skip to content

Instantly share code, notes, and snippets.

View fredlb's full-sized avatar
💭
im not boozin'

Fredrik Lindner fredlb

💭
im not boozin'
View GitHub Profile
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')
while true; do
xdotool mousemove 1500 1100
xdotool click 1
xdotool mousemove 1200 1200
xdotool click 1
done
@fredlb
fredlb / .tmux.conf
Created January 24, 2016 15:10
tmuxconf
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
@fredlb
fredlb / .vimrc
Created January 20, 2016 18:18
osx vimrc
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 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!
@fredlb
fredlb / .vimrc
Last active October 28, 2015 06:47
.vimrc
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'
@fredlb
fredlb / switch.py
Created February 14, 2015 11:31
i3 workspace monitor swap
#!/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 ;)