-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCONFIG.sh
54 lines (33 loc) · 1.13 KB
/
CONFIG.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# CONFIG.sh
# This file is part of fsb
# http://programandala.net/en.program.fsb.html
# ##############################################################
# Author and license
# Copyright (C) 2015 Marcos Cruz (programandala.net)
# You may do whatever you want with this work, so long as you
# retain the copyright notice(s) and this license in all
# redistributed copies and derived works. There is no warranty.
# ##############################################################
# Description
# This program configures the installation of fsb.
#
# Change it to suit your system.
# ##############################################################
# History
# 2015-10-12: First version.
# ##############################################################
# Installation directories
# Current user installation:
VIMDIR=~/.vim
BINDIR=~/bin
# System-wide installation:
#VIMDIR=/usr/share/vim/vimcurrent/
#BINDIR=/usr/local/bin
# ##############################################################
# Intallation command
# Create hard links:
#INSTALLCMD="ln -f "
# Create symbolic links:
INSTALLCMD="ln -s -f $(pwd)/"
# Copy the files:
#INSTALLCMD="cp -f -p "