Merge branch 'master' of github.com:skaterdude97/dotfiles
This commit is contained in:
commit
2f55101eb1
|
|
@ -2,8 +2,10 @@ alias clj='rlwrap java -cp ~/Clojure/clojure-1.8.0.jar clojure.main'
|
|||
alias ll='ls -l'
|
||||
alias la='ls -A'
|
||||
alias l='ls -CF'
|
||||
alias gpwd="pwd | xclip -i"
|
||||
alias cdpwd="cd \$(xclip -o)"
|
||||
alias gpwd='pwd | xclip -i -selection clipboard'
|
||||
alias cdclip="cd \$(xclip -o -selection clipboard)"
|
||||
alias clipi='xclip -i -selection clipboard'
|
||||
alias clipo='xclip -o -selection clipboard'
|
||||
alias ml='livestreamer --config ~/.livestreamerrc -v'
|
||||
alias jblive='mpv rtmp://jblive.videocdn.scaleengine.net/jb-live/play/jblive.stream'
|
||||
alias twit='livestreamer --config ~/.livestreamerrc -v http://www.ustream.tv/leolaporte'
|
||||
|
|
|
|||
9
.bashrc
9
.bashrc
|
|
@ -128,3 +128,12 @@ if ! shopt -oq posix; then
|
|||
. /etc/bash_completion
|
||||
fi
|
||||
fi
|
||||
|
||||
# Junit setup
|
||||
export JUNIT_HOME=/home/andrei/.junit
|
||||
export CLASSPATH=$JUNIT_HOME/junit4.12.jar:$JUNIT_HOME/hamcrest-core-1.3.jar
|
||||
|
||||
# editor setup
|
||||
export VISUAL=vim
|
||||
export EDITOR="$VISUAL"
|
||||
|
||||
|
|
|
|||
|
|
@ -15,3 +15,6 @@
|
|||
lol = log --decorate --pretty=oneline --abbrev-commit
|
||||
lg = log --pretty=format:'%C(auto) %h,%C(green) \"%s\"%Creset, %aN,%C(blue) %cD'
|
||||
|
||||
[core]
|
||||
editor = vim
|
||||
autocrlf = input
|
||||
|
|
|
|||
|
|
@ -23,3 +23,7 @@ set-window-option -g mode-keys vi
|
|||
|
||||
# status bar
|
||||
set -g status-right '♥#(acpi | cut -d ',' -f 2) | %H:%m %d-%b-%y '
|
||||
|
||||
# default shell
|
||||
set -g default-terminal "screen-256color" /bin/bash
|
||||
#set-option -g default-shell /bin/bash
|
||||
|
|
|
|||
|
|
@ -0,0 +1,29 @@
|
|||
# remap prefix from 'C-b' to 'C-a'
|
||||
unbind C-b
|
||||
set-option -g prefix C-a
|
||||
bind-key C-a send-prefix
|
||||
|
||||
# Enable mouse control (clickable windows, panes, resizable panes)
|
||||
set -g mouse on
|
||||
|
||||
# Initialize sesions
|
||||
bind W source-file ~/.tmux/work
|
||||
|
||||
# reload config
|
||||
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
|
||||
|
||||
# spliting windoww
|
||||
unbind %
|
||||
unbind '"'
|
||||
bind | split-window -h
|
||||
bind - split-window -v
|
||||
|
||||
# setting vi mode
|
||||
set-window-option -g mode-keys vi
|
||||
|
||||
# status bar
|
||||
set -g status-right '%H:%m %d-%b-%y '
|
||||
|
||||
# default shell
|
||||
set -g default-terminal "screen-256color" /bin/bash
|
||||
#set-option -g default-shell /bin/bash
|
||||
Loading…
Reference in New Issue