1
0
Fork 0

nvim: explicitly enable nerdfont symbols

This commit is contained in:
tea 2024-05-08 21:33:19 +02:00
parent 59a2756caa
commit 83044f636c
No known key found for this signature in database
2 changed files with 5 additions and 0 deletions

View File

@ -113,6 +113,10 @@ require('packer').startup({
-- tools
local nerdfont_installed = require('my.functions').nerdfont_installed()
use {
'https://github.com/kyazdani42/nvim-web-devicons',
cond = nerdfont_installed
}
use { 'https://github.com/folke/which-key.nvim' }
use {

View File

@ -53,3 +53,4 @@ vim.cmd('colorscheme amora')
vim.api.nvim_set_hl(0, 'AmoraComment', { fg = '#7C4180', ctermfg = 61 })
vim.api.nvim_set_hl(0, 'AmoraCommentBold',
{ fg = '#7C4180', ctermfg = 61, bold = true })
require('nvim-web-devicons').setup({})