-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
38 lines (33 loc) · 1.01 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash -
#===============================================================================
#
# FILE: install.sh
#
# USAGE: ./install.sh
#
# DESCRIPTION:
# Automated deployment of vim scripts
#
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: system recommand——ubuntu 14.04
# AUTHOR: YOUR NAME (unlessbamboo),
# ORGANIZATION:
# CREATED: 2016年06月07日 22:39
# REVISION: ---
#===============================================================================
set -o nounset # Treat unset variables as an error
# import my own function
source ${HOME}/.local/script/shellHeader.sh
#--- FUNCTION ----------------------------------------------------------------
# NAME: powerline_env
# DESCRIPTION: install powerline environment
# PARAMETERS:
# RETURNS:
#-------------------------------------------------------------------------------
powerline_env()
{
echo ""
}