This file contains 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
#!/bin/bash | |
echo "Installing meld..." | |
apt-get install meld -y -qq | |
echo "Meld [OK]" | |
echo "Creating meld custom script..." | |
rm ~/.config/git_meld_diff.sh | |
touch ~/.config/git_meld_diff.sh | |
echo "#!/bin/bash" >> ~/.config/git_meld_diff.sh |
This file contains 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
[alias] | |
st = status -s -b | |
co = checkout | |
ci = commit -m | |
lg = log --graph --pretty=oneline --abbrev-commit --decorate | |
timeline = log --graph --branches --pretty=oneline --decorate --abbrev-commit | |
[color] | |
status = auto | |
diff = auto | |
branch = auto |
This file contains 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
# Directories | |
S_DIR=source | |
B_DIR=build | |
# Files | |
S_FILES=$(S_DIR)/sdl_test.cpp | |
# Output | |
EXEC=$(B_DIR)/sdl_app |
This file contains 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 prefix command to Control-\ | |
unbind-key C-b | |
set-option -g prefix 'C-\' | |
#jump to last open window | |
bind-key 'C-\' last-window | |
#count windows from 1 | |
set -g base-index 1 |
This file contains 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
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set hlsearch | |
set number | |
set showmatch | |
set incsearch | |
set hidden | |
set textwidth=0 tabstop=2 shiftwidth=2 softtabstop=2 expandtab |