diff options
| author | Marc Vertes <mvertes@free.fr> | 2020-02-15 22:18:28 +0100 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2020-02-15 22:18:28 +0100 |
| commit | 11c7eb57d446d634c55c39e0ad17287d36aab446 (patch) | |
| tree | daaace86d73d4e7d014ef5d9daa9491e1f5c9efa /.bashrc | |
| parent | 141502a84b8258095463becc4da6b2e19c311d8d (diff) | |
feat: make install using lt
First working version of lt, Added a makefile (not installed).
Could get rid of ~/.git which was interfering with rg, fzf.
Diffstat (limited to '.bashrc')
| -rw-r--r-- | .bashrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -41,6 +41,7 @@ export TERMINAL=xt alias cl='cf xft:Mono:size=12' alias ls='ls --color=auto' alias ll='ls -alF' +alias op='xdg-open' alias git='hub' alias go11='go1.11.13' alias go12='go1.12.9' @@ -64,12 +65,16 @@ alias by='go build cmd/yaegi/yaegi.go' alias cy='cd ~/go/src/github.com/containous/yaegi' alias ty='go test -v -short ./interp' alias ya='rlwrap -pblue ./yaegi' -alias dya='YAEGI_AST_DOT=1 YAEGI_CFG_DOT=1 ya' +alias dya='YAEGI_AST_DOT=1 YAEGI_CFG_DOT=1 ./yaegi' ws() (cd ~/Wiki && git status --short) export -f ws #PS1='[\u@\h \W]\$ ' +# fzf +. /usr/share/fzf/completion.bash +. /usr/share/fzf/key-bindings.bash + # Display git status in prompt . ~/.bash-powerline.sh |
