diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugin/dbtables.vim	Tue Mar 10 20:25:15 2026 -0400
@@ -0,0 +1,15 @@
+" 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()