mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-27 19:34:57 -04:00
Please forgive me
This commit is contained in:
parent
03be310a9b
commit
8068610b32
3 changed files with 11 additions and 4 deletions
|
|
@ -1,3 +1,6 @@
|
|||
#if [ -f $HOME/.bashrc ]; then
|
||||
# . "$HOME/.bashrc"
|
||||
#fi
|
||||
export GOPATH=$HOME/go_projects
|
||||
export PATH=$PATH:/usr/local/go/bin
|
||||
alias fp='stat --format "%a"'
|
||||
|
|
@ -34,6 +37,7 @@ function myip {
|
|||
echo # Newline.
|
||||
}
|
||||
|
||||
git-random(){ gitRan=$(curl -L -s http://whatthecommit.com/ |grep -A 1 "\"c" |tail -1 |sed 's/<p>//'); git commit -m "$gitRan"; }
|
||||
alias such=git
|
||||
alias very=git
|
||||
alias wow='git status'
|
||||
|
|
|
|||
10
.screenrc
10
.screenrc
|
|
@ -18,9 +18,9 @@ mousetrack on
|
|||
|
||||
# default windows
|
||||
screen -t Shell1 1 bash
|
||||
screen -t Shell2 2 bash
|
||||
screen -t Python 3 python
|
||||
screen -t Media 4 bash
|
||||
#screen -t Shell2 2 bash
|
||||
#screen -t Python 3 python
|
||||
#screen -t Media 4 bash
|
||||
select 0
|
||||
bind c screen 1 # window numbering starts at 1 not 0
|
||||
bind 0 select 10
|
||||
|
|
@ -82,4 +82,6 @@ bind -c rsz \t eval "focus" "command -c rsz" # Tab
|
|||
bind -c rsz -k kl eval "focus left" "command -c rsz" # Left
|
||||
bind -c rsz -k kr eval "focus right" "command -c rsz" # Right
|
||||
bind -c rsz -k ku eval "focus up" "command -c rsz" # Up
|
||||
bind -c rsz -k kd eval "focus down" "command -c rsz" # Down
|
||||
bind -c rsz -k kd eval "focus down" "command -c rsz" # Down
|
||||
source .screen_layout
|
||||
layout save def
|
||||
|
|
|
|||
1
.vimrc
1
.vimrc
|
|
@ -1,6 +1,7 @@
|
|||
syntax enable
|
||||
set tabstop=2
|
||||
set softtabstop=2
|
||||
set shiftwidth=2
|
||||
set expandtab
|
||||
set number
|
||||
set showcmd
|
||||
|
|
|
|||
Loading…
Reference in a new issue