configs  Check-in [e763ba8f40]

Overview
Comment:vimrc: Fix compatibility with vim < 7.3
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e763ba8f40f7ad9663d70c4408fb5191266ee0337f80099027310f42b6373359
User & Date: js on 2024-02-07 22:30:38
Other Links: manifest | tags
Context
2024-03-05
21:30
zshrc: Add no_hist_bang, map ^P and add gsshfs check-in: 33f7534131 user: js tags: trunk
2024-02-07
22:30
vimrc: Fix compatibility with vim < 7.3 check-in: e763ba8f40 user: js tags: trunk
22:20
zshrc: Fix compatibility with zsh 4 check-in: aad9f4af74 user: js tags: trunk
Changes

Modified vim/vimrc from [b73d632cd1] to [183cea367a].

14
15
16
17
18
19
20

21

22
23
24
25
26
27
28
29

30

31
32
33
34
35
36
37

if v:version >= 800
	source $VIMRUNTIME/defaults.vim
else
	source $VIMRUNTIME/vimrc_example.vim
endif
set backup

set undofile

set hlsearch

set t_Co=256
set background=dark
let g:inkpot_black_background=1
colorscheme inkpot

set cinoptions=+4,(4,u4,w4

set colorcolumn=81

highlight ColorColumn ctermbg=235
let c_space_errors=1
set ignorecase
set smartcase
set modeline
set modelines=1000
set nrformats=hex







>
|
>








>
|
>







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

if v:version >= 800
	source $VIMRUNTIME/defaults.vim
else
	source $VIMRUNTIME/vimrc_example.vim
endif
set backup
if v:version >= 703
	set undofile
end
set hlsearch

set t_Co=256
set background=dark
let g:inkpot_black_background=1
colorscheme inkpot

set cinoptions=+4,(4,u4,w4
if v:version >= 703
	set colorcolumn=81
end
highlight ColorColumn ctermbg=235
let c_space_errors=1
set ignorecase
set smartcase
set modeline
set modelines=1000
set nrformats=hex