nvim: explicitly enable nerdfont symbols
This commit is contained in:
parent
59a2756caa
commit
83044f636c
|
@ -113,6 +113,10 @@ require('packer').startup({
|
||||||
|
|
||||||
-- tools
|
-- tools
|
||||||
local nerdfont_installed = require('my.functions').nerdfont_installed()
|
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 { 'https://github.com/folke/which-key.nvim' }
|
||||||
use {
|
use {
|
||||||
|
|
|
@ -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, 'AmoraComment', { fg = '#7C4180', ctermfg = 61 })
|
||||||
vim.api.nvim_set_hl(0, 'AmoraCommentBold',
|
vim.api.nvim_set_hl(0, 'AmoraCommentBold',
|
||||||
{ fg = '#7C4180', ctermfg = 61, bold = true })
|
{ fg = '#7C4180', ctermfg = 61, bold = true })
|
||||||
|
require('nvim-web-devicons').setup({})
|
||||||
|
|
Loading…
Reference in New Issue
Block a user