view 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 source

" 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()