vim-devicons icon indicating copy to clipboard operation
vim-devicons copied to clipboard

Nerdtree icons are looking weird .

Open devlohit opened this issue 4 years ago • 1 comments

Hi i am using latest version of nerdtree , devicons and nerdtree-syntax-highlight . However in my nvim the icons are looking kinda weird and broken . I am leaving a screenshot here. Screenshot from 2022-02-08 23-45-18

I have already tried with different fonts like hack nerd , monospace , cascadia code . But nothing seems to work . Please help me fix this .

Also i am leaving a copy of my init.vim

:set number " :set relativenumber :set autoindent :set tabstop=4 :set shiftwidth=4 :set smarttab :set softtabstop=4 :set mouse=a :set noshowmode

call plug#begin()

Plug 'https://github.com/preservim/nerdtree' " NerdTree Plug 'https://github.com/tpope/vim-commentary' " For Commenting gcc & gc Plug 'https://github.com/vim-airline/vim-airline' " Status bar Plug 'vim-airline/vim-airline-themes' Plug 'https://github.com/rafi/awesome-vim-colorschemes' " Retro Scheme Plug 'https://github.com/ryanoasis/vim-devicons' " Developer Icons Plug 'tiagofumo/vim-nerdtree-syntax-highlight' Plug 'https://github.com/preservim/tagbar' " Tagbar for code navigation Plug 'https://github.com/terryma/vim-multiple-cursors' " CTRL + N for multiple cursors Plug 'jiangmiao/auto-pairs' Plug 'SirVer/ultisnips' Plug 'honza/vim-snippets' Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf.vim' " ---> git commands within vim <--- Plug 'tpope/vim-fugitive' " ---> git changes on the gutter <--- Plug 'airblade/vim-gitgutter' " ---> nerdtree git changes <--- Plug 'Xuyuanp/nerdtree-git-plugin' " Plug 'neoclide/coc.nvim' set encoding=UTF-8

call plug#end()

nnoremap <C-t> :NERDTreeToggle<CR> nnoremap <C-s> :Files<CR> nmap <F8> :TagbarToggle<CR> map tr :let $VIM_DIR=expand('%:p:h')<CR>:terminal<CR>cd $VIM_DIR<CR> nnoremap <C-r> :%s/

:colorscheme gruvbox let g:airline_theme='google_dark' hi Normal guibg=NONE ctermbg=NONE

let g:NERDTreeDirArrowExpandable="+" let g:NERDTreeDirArrowCollapsible="~"

Please have a look and help me with this .

devlohit avatar Feb 08 '22 18:02 devlohit

I get this same problem but only when hovering on an item in the list image

sarahsturgeon avatar Feb 10 '23 21:02 sarahsturgeon