mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-12 13:33:49 -05:00
27 lines
652 B
VimL
27 lines
652 B
VimL
let s:base = expand("<sfile>:h:h")
|
|
let Filter = { _, v -> stridx(v, s:base) == -1 && stridx(v, $VIMRUNTIME) == -1 && v !~ "after" }
|
|
let files = filter(globpath(&rtp, 'indent/cuda.vim', 1, 1), Filter)
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'cuda') == -1
|
|
|
|
" Vim indent file
|
|
" Language: CUDA
|
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
" Last Change: 2008 Nov 29
|
|
|
|
" Only load this indent file when no other was loaded.
|
|
if exists("b:did_indent")
|
|
finish
|
|
endif
|
|
let b:did_indent = 1
|
|
|
|
" It's just like C indenting
|
|
setlocal cindent
|
|
|
|
let b:undo_indent = "setl cin<"
|
|
|
|
endif
|