ChatGPT.nvim icon indicating copy to clipboard operation
ChatGPT.nvim copied to clipboard

Missing documentation about ui.

Open tinnedkarma opened this issue 2 years ago • 4 comments

I have some troubles with the icons, maybe some missing ttf(or other as such) packages. See image below (lower right side of the picture). I could not find anything in the provided documentation about ui related dependencies (other than nui.nvim). Can you provide more information about other configuration/plugins/icons that may impact this plugin?

image

tinnedkarma avatar Oct 28 '23 16:10 tinnedkarma

same issue here, using vim-plug

call plug#begin('~/.vim/plugged')

Plug 'jackMort/ChatGPT.nvim'
Plug 'nvim-lua/plenary.nvim'
Plug 'MunifTanjim/nui.nvim'
Plug 'nvim-telescope/telescope.nvim'
call plug#end()

lua require('chatgpt').setup()

amplicity avatar Oct 29 '23 03:10 amplicity

Use ctrl+o to bring these settings up.

amplicity avatar Oct 31 '23 01:10 amplicity

I know about those settings, I am having trouble finding the icons. Please se attached image of my sessions panel. I am missing the icons on the left side of the session names image

tinnedkarma avatar Nov 03 '23 22:11 tinnedkarma

As for the icons, I added the following to my .vimrc file:

lua require("chatgpt").setup({chat = {question_sign = "?",answer_sign = "=",border_left_sign = "|",border_right_sign = "|",sessions_window = {active_sign = " a ",inactive_sign = " i ",current_line_sign = "#"}},popup_input = {prompt = " ? "},settings_window = {setting_sign = " - "},help_window = {setting_sign = " - "}})

It is not particularly pretty, but it is ASCII, so I don't have to install new fonts.

p135246 avatar Feb 04 '24 10:02 p135246