1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-21 01:05:11 +01:00
vim/runtime/ftplugin/logtalk.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
416 B
VimL
Raw Permalink Normal View History

2008-07-13 17:41:49 +00:00
" Logtalk filetype plugin file
" Language: Logtalk
" Maintainer: Paulo Moura <pmoura@logtalk.org>
2018-08-11 18:00:22 +02:00
" Latest Revision: 2018-08-03
2008-07-13 17:41:49 +00:00
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
let b:undo_ftplugin = "setl ts< sw< fdm< fdc< ai< dict<"
2018-08-11 18:00:22 +02:00
setlocal ts=4
2008-07-13 17:41:49 +00:00
setlocal sw=4
setlocal fdm=syntax
2018-08-11 18:00:22 +02:00
setlocal fdn=10
2008-07-13 17:41:49 +00:00
setlocal fdc=2
setlocal autoindent
setlocal dict=$VIMRUNTIME/ftplugin/logtalk.dict