comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:238b45cc333b
1 " plugin/dbtables.vim
2 " Basic plugin entry point
3
4 if exists('g:loaded_dbtables')
5 finish
6 endif
7 let g:loaded_dbtables = 1
8
9 " Default configuration option
10 if !exists('g:dbtables_greeting')
11 let g:dbtables_greeting = 'Hello from dbtables!'
12 endif
13
14 " Command that calls an autoloaded function
15 command! DbtablesGreet call dbtables#greet()