Add new files and updates
This commit is contained in:
parent
4cca79cacf
commit
5815316af7
7 changed files with 30 additions and 5 deletions
|
|
@ -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/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=$PATH:$HOME/gcclibs/aarch64-linux-gnu/bin:$HOME/gcclibs/arm-linux-gnueabi/bin
|
||||||
export PATH=$HOME/.pub-cache/bin:$PATH
|
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 GOBIN=$GOROOT/bin
|
||||||
export PATH=$PATH:/usr/local/go/bin
|
export PATH=$PATH:$GOBIN
|
||||||
export DEVKITPRO=/opt/devkitpro
|
export DEVKITPRO=/opt/devkitpro
|
||||||
export DEVKITARM=${DEVKITPRO}/devkitARM
|
export DEVKITARM=${DEVKITPRO}/devkitARM
|
||||||
export DEVKITA64=${DEVKITPRO}/devkitA64
|
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 lcat='pygmentize -g -O style=colorful,linenos=1 | grep -P "^\d\d\d\d:"'
|
||||||
alias ccat='pygmentize -g'
|
alias ccat='pygmentize -g'
|
||||||
alias hcat='highlight -n -O ansi --force'
|
alias hcat='highlight -n -O ansi --force'
|
||||||
|
alias tcat='highlight -O ansi --force'
|
||||||
|
|
||||||
alias dc="docker-compose"
|
alias dc="docker-compose"
|
||||||
|
|
||||||
|
|
@ -70,3 +73,4 @@ export TERM=screen-256color
|
||||||
export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1
|
export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1
|
||||||
. $HOME/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
|
. $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
|
. /home/joey/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
|
||||||
|
|
||||||
|
|
|
||||||
6
.inputrc
6
.inputrc
|
|
@ -1,4 +1,10 @@
|
||||||
|
$include /etc/inputrc
|
||||||
"\ek": previous-history
|
"\ek": previous-history
|
||||||
"\ej": next-history
|
"\ej": next-history
|
||||||
"\eh": backward-char
|
"\eh": backward-char
|
||||||
"\el": forward-char
|
"\el": forward-char
|
||||||
|
|
||||||
|
"\ew": forward-word
|
||||||
|
"\eb": backward-word
|
||||||
|
|
||||||
|
"\ep": quoted-insert
|
||||||
|
|
|
||||||
|
|
@ -126,7 +126,7 @@ run -b 'tmux bind -ct vi-edit Escape cancel 2> /dev/null || true'
|
||||||
|
|
||||||
|
|
||||||
# -- copy mode -----------------------------------------------------------------
|
# -- copy mode -----------------------------------------------------------------
|
||||||
|
bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-selection
|
||||||
bind Enter copy-mode # enter copy mode
|
bind Enter copy-mode # enter copy mode
|
||||||
|
|
||||||
run -b 'tmux bind -t vi-copy v begin-selection 2> /dev/null || true'
|
run -b 'tmux bind -t vi-copy v begin-selection 2> /dev/null || true'
|
||||||
|
|
|
||||||
1
.vimrc
1
.vimrc
|
|
@ -271,6 +271,7 @@ Plug 'udalov/kotlin-vim'
|
||||||
Plug 'ervandew/supertab'
|
Plug 'ervandew/supertab'
|
||||||
Plug 'simnalamburt/vim-mundo'
|
Plug 'simnalamburt/vim-mundo'
|
||||||
Plug 'christoomey/vim-tmux-navigator'
|
Plug 'christoomey/vim-tmux-navigator'
|
||||||
|
Plug 'tpope/vim-surround'
|
||||||
"Plug 'baabelfish/nvim-nim'
|
"Plug 'baabelfish/nvim-nim'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
14
bashscripts/resizetmux.bash
Executable 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
|
||||||
|
|
@ -1 +1 @@
|
||||||
cp -rf .vim* .python* .bash* bashscripts .pylint* .tmux* .profile .gitconfig ~/
|
cp -rf .inputrc .vim* .python* .bash* bashscripts .pylint* .tmux* .profile .gitconfig ~/
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue