summaryrefslogtreecommitdiff
path: root/.lvimrc
blob: 39b0158f6ecccec375f1c4c966b47d50baec7c08 (plain)
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
" Local vimrc configuration file.  Install the localvimrc.vim vim script.
set expandtab
set tabstop=8
set softtabstop=4
set shiftwidth=4

" Add all tag files to tags path.

let topdir = findfile("configure.in", ".;")
let topdir = substitute(topdir, "configure.in", "", "")

" Check tags file in current dir:
set tags+=tags

" Add tag files in parent directories:
let tagfiles = findfile("tags", ".;", -1)

" Add tag files for libraries:
call add(tagfiles, topdir . "opl/tags")
call add(tagfiles, topdir . "pcsound/tags")
call add(tagfiles, topdir . "textscreen/tags")

for tagfile in tagfiles
    " Don't go beyond the project top level when adding parent dirs:
    if stridx(tagfile, topdir) >= 0
        exec "set tags+=" . tagfile
    endif
endfor

unlet topdir
unlet tagfiles