allow for versions unable to deal with space

master
Damian Peterson 9 years ago
parent d382f5ffd2
commit bd94dc3280

@ -1,3 +1,6 @@
scriptencoding utf-8
set encoding=utf-8
" get out of VI's compatible mode.. " get out of VI's compatible mode..
set nocompatible set nocompatible
@ -41,11 +44,11 @@ set shiftwidth=4
set expandtab set expandtab
" default font " default font
set guifont=DejaVu\ Sans\ Mono\ 9 " set guifont=DejaVu\ Sans\ Mono\ 9
" show line numbers " show line numbers
set number set number
set relativenumber " set relativenumber
" automatically indent on line break " automatically indent on line break
set autoindent set autoindent
@ -60,7 +63,7 @@ set t_Co=256
set background=dark set background=dark
" nyummy wombat colours " nyummy wombat colours
colorscheme wombat ' colorscheme wombat
" enable plugins " enable plugins
filetype plugin on filetype plugin on
@ -96,5 +99,8 @@ set lbr
"vmap <C-c> y:call system("pbcopy", getreg("\""))<CR> "vmap <C-c> y:call system("pbcopy", getreg("\""))<CR>
" show whitespace " show whitespace
":set listchars=eol:¬,tab:>·,trail:~,extends:>,precedes:<,space:␣ if has("patch-7.4.710")
":set list listchars=eol,tab:>-,trail:~,extends:>,precedes:<,space
else
listchars=eol,tab:>-,trail:~,extends:>,precedes:<
endif

Loading…
Cancel
Save