dotfiles

ref: master

./vim-sanity.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
54
55
56
57
58
59
#/usr/bin/env sh

# Vim sanity
# ----------
#
# This is meant to bootstrap a sane vim environment on a new machine for
# editing Python files and other configuration files.  It is intended to be a
# minimalistic version of my full vimrc.
#
# This file will end up living at http://honza.ca/vim.sh.
# The idea is to ssh into a remote machine that I log into often and run:
#
# $ curl http://honza.ca/vim.sh | sh
#
# And get same sane default for vim.

VIMRC="set nocompatible
set hidden
set nowrap
set tabstop=4
set backspace=indent,eol,start
set autoindent
set copyindent
set shiftwidth=4
set shiftround
set showmatch
set ignorecase
set smartcase

set smarttab

set hlsearch
set incsearch
set textwidth=79
set nocursorline
set nojoinspaces
set cpoptions+=J
set noswapfile

filetype on
filetype plugin on
filetype indent on
filetype plugin indent on
set expandtab

nnoremap ; :
map <C-h> <C-w>h
map <C-j> <C-w>j
map <C-k> <C-w>k
map <C-l> <C-w>l

set ruler
nnoremap K <nop>

nnoremap <Space> za
vnoremap <Space> za
syntax enable"

echo "$VIMRC" > $HOME/.vimrc