Mercurial > vim_plugins > core
diff plugin/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/plugin/core.vim Tue Mar 10 20:28:16 2026 -0400 @@ -0,0 +1,15 @@ +" plugin/core.vim +" Basic plugin entry point + +if exists('g:loaded_core') + finish +endif +let g:loaded_core = 1 + +" Default configuration option +if !exists('g:core_greeting') + let g:core_greeting = 'Hello from core!' +endif + +" Command that calls an autoloaded function +command! CoreGreet call core#greet()
