This commit is contained in:
Michael Coppola 2024-10-22 11:32:48 -04:00
parent 39c3cd41d5
commit b39e65fa68

View file

@ -91,6 +91,8 @@ let s:default_config = {
\ 'ring_update_ms': 1000,
\ }
let g:llama_config = get(g:, 'llama_config', s:default_config)
let s:nvim_ghost_text = exists('*nvim_buf_get_mark')
let s:vim_ghost_text = has('textprop')
@ -106,8 +108,6 @@ if s:vim_ghost_text
endif
endif
let g:llama_config = get(g:, 'llama_config', s:default_config)
function! s:get_indent(str)
let l:count = 0
for i in range(len(a:str))