mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-21 19:52:29 +00:00
Moved personal-scripts to a bin directory
This commit is contained in:
parent
70de8170b0
commit
927c0e350b
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -5,3 +5,6 @@
|
|||||||
[submodule "oh-my-zsh"]
|
[submodule "oh-my-zsh"]
|
||||||
path = oh-my-zsh
|
path = oh-my-zsh
|
||||||
url = git@github.com:balkian/oh-my-zsh.git
|
url = git@github.com:balkian/oh-my-zsh.git
|
||||||
|
[submodule "bin"]
|
||||||
|
path = bin
|
||||||
|
url = git://github.com/balkian/personal-scripts.git
|
||||||
|
6
bashrc
6
bashrc
@ -172,10 +172,10 @@ PS0="$PS0 \\[\033[1;32m\]\$(parse_git_branch)\\[\033[0m\]\$ "
|
|||||||
# export PROMPT_COMMAND="$PROMPT_COMMAND&&updateWindowTitle"
|
# export PROMPT_COMMAND="$PROMPT_COMMAND&&updateWindowTitle"
|
||||||
#fi
|
#fi
|
||||||
#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
#[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
|
||||||
export PATH=$PATH:"/media/Data/code/personal-scripts/"
|
export PATH="$PATH:$HOME/.bin"
|
||||||
export CDPATH=$CDPATH:"/media/Data/"
|
export CDPATH="$CDPATH:/media/Data/"
|
||||||
|
|
||||||
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
|
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting
|
||||||
|
|
||||||
### Added by the Heroku Toolbelt
|
### Added by the Heroku Toolbelt
|
||||||
export PATH="/usr/local/heroku/bin:$PATH"
|
export PATH="$PATH:/usr/local/heroku/bin"
|
||||||
|
1
bin
Submodule
1
bin
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 85513e3fd4a3822e482836dc245bfcecff10ca29
|
@ -51,7 +51,7 @@ setw -g monitor-activity on
|
|||||||
set -g visual-activity on
|
set -g visual-activity on
|
||||||
|
|
||||||
# Automatically set window title
|
# Automatically set window title
|
||||||
setw -g automatic-rename on
|
setw -g automatic-rename off
|
||||||
|
|
||||||
# Mouse and panes
|
# Mouse and panes
|
||||||
setw -g mode-mouse on
|
setw -g mode-mouse on
|
||||||
@ -93,3 +93,8 @@ unbind C-s
|
|||||||
# Look better
|
# Look better
|
||||||
# look good
|
# look good
|
||||||
set -g default-terminal "screen-256color"
|
set -g default-terminal "screen-256color"
|
||||||
|
|
||||||
|
# Maximise and minimise panes
|
||||||
|
|
||||||
|
unbind m
|
||||||
|
bind m run "tmux-zoom.sh"
|
||||||
|
10
zshrc
10
zshrc
@ -1,4 +1,8 @@
|
|||||||
source ~/.starttmux
|
export PATH=$PATH:$HOME/.bin/
|
||||||
|
|
||||||
|
# Only update the path if not running interactively
|
||||||
|
[ -z "$PS1" ] && return
|
||||||
|
source ~/.starttmux
|
||||||
# Path to your oh-my-zsh configuration.
|
# Path to your oh-my-zsh configuration.
|
||||||
ZSH=$HOME/.oh-my-zsh
|
ZSH=$HOME/.oh-my-zsh
|
||||||
|
|
||||||
@ -40,11 +44,9 @@ source $ZSH/oh-my-zsh.sh
|
|||||||
#bindkey "^R" history-incremental-search-backward
|
#bindkey "^R" history-incremental-search-backward
|
||||||
|
|
||||||
# Customize to your needs...
|
# Customize to your needs...
|
||||||
export PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/balkian/code/personal-scripts/
|
|
||||||
|
|
||||||
PYTHONSTARTUP=~/.pythonrc.py
|
PYTHONSTARTUP=~/.pythonrc.py
|
||||||
export PYTHONSTARTUP
|
export PYTHONSTARTUP
|
||||||
|
|
||||||
|
|
||||||
### Added by the Heroku Toolbelt
|
### Added by the Heroku Toolbelt
|
||||||
export PATH="/usr/local/heroku/bin:$PATH"
|
export PATH="$PATH:/usr/local/heroku/bin"
|
||||||
|
Loading…
Reference in New Issue
Block a user