This commit is contained in:
Andrei Stoica 2017-04-24 12:11:28 -04:00
parent 13cf1104cb
commit 27b3ef977c
4 changed files with 17 additions and 0 deletions

View File

@ -128,3 +128,12 @@ if ! shopt -oq posix; then
. /etc/bash_completion . /etc/bash_completion
fi fi
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"

View File

@ -15,3 +15,6 @@
lol = log --decorate --pretty=oneline --abbrev-commit lol = log --decorate --pretty=oneline --abbrev-commit
lg = log --pretty=format:'%C(auto) %h,%C(green) \"%s\"%Creset, %aN,%C(blue) %cD' lg = log --pretty=format:'%C(auto) %h,%C(green) \"%s\"%Creset, %aN,%C(blue) %cD'
[core]
editor = vim
autocrlf = input

View File

@ -23,3 +23,7 @@ set-window-option -g mode-keys vi
# status bar # status bar
set -g status-right '♥#(acpi | cut -d ',' -f 2) | %H:%m %d-%b-%y ' 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

1
.vimrc
View File

@ -12,6 +12,7 @@ set autoindent
set shiftwidth=2 set shiftwidth=2
set smartindent set smartindent
set softtabstop=2 set softtabstop=2
set tabstop=2
set ruler set ruler
set undolevels=1000 set undolevels=1000
set backspace=indent,eol,start set backspace=indent,eol,start