diff options
author | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-05-21 12:36:14 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@gmail.com> | 2016-05-21 12:36:14 +0200 |
commit | b1284d9671d3811cbafb5b10d2a0b6b8ec19376d (patch) | |
tree | 7fd5e21d05bb1aafb4b867904ed02af641f8e340 /install.sh | |
parent | e8635d9825063e73eaef67ec68397f4d332471a2 (diff) |
NeoVim and Automatic Install:
* Automatic installation file `install.sh` in order to handle
NeoVim config.
* NeoVim config -> a copy from Vims, check that in the future.
Diffstat (limited to 'install.sh')
-rw-r--r-- | install.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..5899025 --- /dev/null +++ b/install.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Link at home folder +stow -t ~ bash vim tmux git + +# Link at XDG_CONFIG_HOME if set, if not to $HOME/.config (they should be the same) +stow -t ${XDG_CONFIG_HOME:=$HOME/.config} nvim |