Sha256: ca599f2be5f32564966d41b908ce8dea45910f046418f74d7b03e447f70d5140

Contents?: true

Size: 477 Bytes

Versions: 5

Compression:

Stored size: 477 Bytes

Contents

#!/bin/bash
#-------------------------------------------------------------------------------

# Install Vim editor.
apt-get -y install vim vim-scripts vim-puppet || exit 20

# Set Vim options
( cat <<'EOP'
set tabstop=2
set shiftwidth=2
set expandtab
set smarttab
set number
set showmatch
set hlsearch
set incsearch
set smartcase
set backspace=2
set autoindent
set textwidth=79
set ruler
set background=dark
filetype plugin indent on
syntax on
EOP
) > "$HOME/.vimrc" || exit 21

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
corl-0.4.18 bootstrap/os/ubuntu/02-editor.sh
corl-0.4.17 bootstrap/os/ubuntu/02-editor.sh
corl-0.4.16 bootstrap/os/ubuntu/02-editor.sh
corl-0.4.15 bootstrap/os/ubuntu/02-editor.sh
corl-0.4.14 bootstrap/os/ubuntu/02-editor.sh