Sha256: 2dbfff34fa85804313d7f50aaa51009af1797cca4575e76b7efba8ae5e8f3b92
Contents?: true
Size: 454 Bytes
Versions: 14
Compression:
Stored size: 454 Bytes
Contents
#!/bin/bash #------------------------------------------------------------------------------- # Install Vim editor. apt-get -y install vim || 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
14 entries across 14 versions & 1 rubygems