Sha256: a3cb7a1a74e3510c364ba0cad05f5b8d85471c08f0d58788f47e93d68a31386c
Contents?: true
Size: 595 Bytes
Versions: 16
Compression:
Stored size: 595 Bytes
Contents
#!/bin/bash #------------------------------------------------------------------------------- # Install Vim editor. echo "1. Ensuring Vim editor" apt-get -y install vim >/tmp/vim.install.log 2>&1 || exit 20 # Set Vim options if [ ! -e "$HOME/.vimrc" ] then echo "2. Setting default .vimrc configuration" ( 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 fi
Version data entries
16 entries across 16 versions & 1 rubygems