mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
14 lines
366 B
VimL
14 lines
366 B
VimL
|
" Vim filetype plugin file
|
||
|
" Language: Godot shading language
|
||
|
" Maintainer: Maxim Kim <habamax@gmail.com>
|
||
|
" Website: https://github.com/habamax/vim-gdscript
|
||
|
"
|
||
|
" This file has been manually translated from Vim9 script.
|
||
|
|
||
|
if exists("b:did_ftplugin") | finish | endif
|
||
|
let b:did_ftplugin = 1
|
||
|
|
||
|
let b:undo_ftplugin = 'setlocal suffixesadd<'
|
||
|
|
||
|
setlocal suffixesadd=.gdshader
|