如何解决NERDTree图标显示不正确的问题?

问题描述 投票:0回答:1

当我在 Linux Ubuntu 22.04 上配置

init.vim
中的
neovim
时,我只是从 here 复制文件,它使用
NERDTree
快捷方式,如下所示:

nnoremap <C-f> :NERDTreeFocus<CR>
nnoremap <C-n> :NERDTree<CR>
nnoremap <C-t> :NERDTreeToggle<CR>

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

但是当我使用快捷键

Ctrl+T
切换
:NERDTreeToggle
功能时,显示不稳定: enter image description here

enter image description here

但理想的前景应该是这样的: enter image description here

enter image description here

我尝试添加

:set encoding=UTF-8
,但仍然无法正常显示。有人可以帮忙吗?

linux ubuntu neovim nerdtree
1个回答
0
投票

安装 Nerd 字体

wget https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/3270.zip
unzip 3270.zip -d 3270
cp *.ttf ~/.local/share/fonts/
fc-list | grep "3270"

在你的 init.vim 中

set guifont=3270NerdFont-Regular:h12

© www.soinside.com 2019 - 2024. All rights reserved.