Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经克隆了 powerfonts 的存储库并安装了它。我将我的 vim 配置为
let g:airline_powerline_fonts=1
但是它在 debian 上不起作用,即使我清理了字体缓存并重新启动服务器。但它确实适用于我的mac。
我想知道它有什么问题。我应该在debian上配置字体吗?
这是一个语言环境问题。
语言环境是一组语言和文化规则。这些涵盖诸如消息语言、不同字符集、字典约定等方面。程序需要能够确定其语言环境并相应地采取行动以适应不同的文化。
您可以使用这些环境变量设置语言
在这种情况下,设置LANG = "en_US.UTF-8",或将解决问题。.bashrc.zshrc.bash_profile
LANG = "en_US.UTF-8"
.bashrc
.zshrc
.bash_profile
或者你可以设置 LC_ALL="en_US.UTF-8"
LC_ALL="en_US.UTF-8"