Leser: 40
|< 1 2 3 4 ... 8 >| | 74 Einträge, 8 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin
set diffexpr=MyDiff()
function MyDiff()
let opt = ''
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
silent execute '!D:\Programme\Vim\vim62\diff -a ' . opt . '"' . v:fname_in . '" "' . v:fname_new . '" > "' . v:fname_out . '"'
endfunction
set shiftwidth=4
set tabstop=8
set softtabstop=4
set expandtab
colorscheme crian
map [[ /^}<CR>%0
1
2
3
4
5
6
7
8
let libc = substitute(glob("/lib/libc-*.so*"), "\n.*", "", "")
function Getenv(x)
return libcall(g:libc, "getenv", a:x)
endfunction
if Getenv("DISPLAY") =~ ".:"
set clipboard=exclude:.*
endif
:highlight linenr ctermbg=red
|< 1 2 3 4 ... 8 >| | 74 Einträge, 8 Seiten |