-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# This file is autogenerated by the aliases tool. | ||
# For more info about aliases type `aliases --help` | ||
# or visit https://github.com/sebglazebrook/aliases | ||
|
||
--- | ||
lll: | ||
command: "ls -l" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
export VIMINIT="let \$MYVIMRC='$SSHHOME/.sshrc.d/vimrc' | source \$MYVIMRC" | ||
|
||
if [ ! -d ~/.vim ]; then | ||
mkdir ~/.vim | ||
fi | ||
|
||
vim_plugs=(init.vim plugs.vim conf.vim style.vim keymap.vim) | ||
|
||
for plug in ${vim_plugs[@]}; do | ||
if [ ! -f ~/.vim/${plug} ]; then | ||
cp $SSHHOME/.sshrc.d/${plug} ~/.vim/${plug} | ||
fi | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters