view plugin/dbtables.vim @ 0:238b45cc333b

Initial Commit
author Luka Sitas <lsitas@avatarasoftware.com>
date Tue, 10 Mar 2026 20:25:15 -0400
parents
children 8530ebeda72c
line wrap: on
line source

" plugin/dbtables.vim
" Basic plugin entry point

if exists('g:loaded_dbtables')
  finish
endif
let g:loaded_dbtables = 1

" Default configuration option
if !exists('g:dbtables_greeting')
  let g:dbtables_greeting = 'Hello from dbtables!'
endif

" Command that calls an autoloaded function
command! DbtablesGreet call dbtables#greet()