diff options
| -rw-r--r-- | nvim/ginit.vim | 2 | ||||
| -rw-r--r-- | nvim/init.vim | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/nvim/ginit.vim b/nvim/ginit.vim index 0a5540f..3bf891f 100644 --- a/nvim/ginit.vim +++ b/nvim/ginit.vim @@ -1,5 +1,5 @@ -if exists("g:fvim_loaded") +if exists("g:fvim_loaded") || exists("g:nvy") set guifont=LiterationMono\ Nerd\ Font\ Mono:h18 nnoremap <A-CR> :FVimToggleFullScreen<CR> FVimCursorSmoothMove v:true diff --git a/nvim/init.vim b/nvim/init.vim index 4cdf861..f537d18 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -448,13 +448,14 @@ do require("lualine").setup({sections = {lualine_x = {get_status_icon, ollama_loaded}}}) require("ollama").config.prompts.fgen = { prompt = [[ -Generate $ftype code that follows this code: +Generate $ftype code that keeps all comments and follows this code: ``` $before ``` -and comes before this code +and could go before this code + ``` $after ``` |
