diff autoload/core.vim @ 0:7bb5f650cfb7

Initial Commit
author Luka Sitas <lsitas@avatarasoftware.com>
date Tue, 10 Mar 2026 20:28:16 -0400
parents
children 7c5bd18befd2
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/autoload/core.vim	Tue Mar 10 20:28:16 2026 -0400
@@ -0,0 +1,10 @@
+" autoload/core.vim
+" Functions are loaded on demand
+
+if exists('*core#greet')
+  finish
+endif
+
+function! core#greet() abort
+  echo g:core_greeting
+endfunction