diff options
author | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-07-10 14:47:12 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-07-10 14:47:12 +0200 |
commit | ba593bfffa4f80ba5350c8f7b31a6add5f5ef4e8 (patch) | |
tree | 36da888c30be1ee592fa35a7891518c720e04895 /bash | |
parent | 89b77230729f23797f4250783b84f9069aaca918 (diff) | |
parent | a4602751fbb633244ff3aa76de4e5d0ed18000e3 (diff) |
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'bash')
-rw-r--r-- | bash/.bash_aliases | 1 | ||||
-rw-r--r-- | bash/.bash_profile | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/bash/.bash_aliases b/bash/.bash_aliases index 397a823..73f0d8f 100644 --- a/bash/.bash_aliases +++ b/bash/.bash_aliases @@ -23,6 +23,7 @@ alias l='ls -CF' # vim open multiple files in tabs alias vim='vim -p' +alias nvim='nvim -p' # show me the terminal colors alias 256color='(x=`tput op` y=`printf %76s`;for i in {0..256};do o=00$i;echo -e ${o:${#o}-3:3} `tput setaf $i;tput setab $i`${y// /=}$x;done)' diff --git a/bash/.bash_profile b/bash/.bash_profile index c4f3457..affc9db 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -18,5 +18,5 @@ export TERM=xterm-256color ################################################################ # Create .config if it doesn't exist and set XDG vars mkdir -p $HOME/.config -XDG_CONFIG_HOME=${XDG_CONFIG_HOME:=$HOME/.config} -XDG_DATA_HOME=${XDG_DATA_HOME:=$HOME/.config} +export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:=$HOME/.config} +export XDG_DATA_HOME=${XDG_DATA_HOME:=$HOME/.config} |