Add new files and updates

This commit is contained in:
Joey Payne 2018-12-11 10:28:06 -07:00
commit 5815316af7
7 changed files with 30 additions and 5 deletions

View file

@ -2,9 +2,11 @@ export PATH=/usr/lib/dart/bin:$HOME/.local/bin:/snap/bin:/usr/local/gradle/gradl
export PATH=$PATH:$HOME/yuzu/:$HOME/Nim/bin:$HOME/.nimble/bin:$HOME/nimlibs
export PATH=$PATH:$HOME/gcclibs/aarch64-linux-gnu/bin:$HOME/gcclibs/arm-linux-gnueabi/bin
export PATH=$HOME/.pub-cache/bin:$PATH
export GOROOT=/usr/local/go
export PATH=$PATH:$HOME/flutter/bin
export GOROOT=/usr/lib/go-1.11/
export GOPATH=$HOME/go
export GOBIN=$GOROOT/bin
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:$GOBIN
export DEVKITPRO=/opt/devkitpro
export DEVKITARM=${DEVKITPRO}/devkitARM
export DEVKITA64=${DEVKITPRO}/devkitA64
@ -26,6 +28,7 @@ alias did="vim +'normal Go' +'r!date' ~/Documents/did.txt"
alias lcat='pygmentize -g -O style=colorful,linenos=1 | grep -P "^\d\d\d\d:"'
alias ccat='pygmentize -g'
alias hcat='highlight -n -O ansi --force'
alias tcat='highlight -O ansi --force'
alias dc="docker-compose"
@ -70,3 +73,4 @@ export TERM=screen-256color
export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1
. $HOME/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
. /home/joey/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true

View file

@ -1,4 +1,10 @@
$include /etc/inputrc
"\ek": previous-history
"\ej": next-history
"\eh": backward-char
"\el": forward-char
"\ew": forward-word
"\eb": backward-word
"\ep": quoted-insert

View file

@ -126,7 +126,7 @@ run -b 'tmux bind -ct vi-edit Escape cancel 2> /dev/null || true'
# -- copy mode -----------------------------------------------------------------
bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-selection
bind Enter copy-mode # enter copy mode
run -b 'tmux bind -t vi-copy v begin-selection 2> /dev/null || true'

1
.vimrc
View file

@ -271,6 +271,7 @@ Plug 'udalov/kotlin-vim'
Plug 'ervandew/supertab'
Plug 'simnalamburt/vim-mundo'
Plug 'christoomey/vim-tmux-navigator'
Plug 'tpope/vim-surround'
"Plug 'baabelfish/nvim-nim'
call plug#end()

View file

@ -1 +1 @@
cp -rf ~/.vim* ~/.python* ~/.bash* ~/bashscripts ~/.pylint* ~/.tmux* ~/.profile ~/.gitconfig .
cp -rf ~/.inputrc ~/.vim* ~/.python* ~/.bash* ~/bashscripts ~/.pylint* ~/.tmux* ~/.profile ~/.gitconfig .

14
bashscripts/resizetmux.bash Executable file
View file

@ -0,0 +1,14 @@
tmux selectp -t 1
tmux splitw -h -p 50
tmux splitw -v -p 50
tmux selectp -t 1
tmux splitw -h -p 50
tmux splitw -v -p 50
tmux selectp -t 1
tmux resizep -R -x 106
tmux selectp -t 2
tmux resizep -R -x 106
tmux selectp -t 4
tmux resizep -R -x 106
tmux selectp -t 1

View file

@ -1 +1 @@
cp -rf .vim* .python* .bash* bashscripts .pylint* .tmux* .profile .gitconfig ~/
cp -rf .inputrc .vim* .python* .bash* bashscripts .pylint* .tmux* .profile .gitconfig ~/