fix: enable Nerd Font support and adjust font variant settings

This commit is contained in:
David Ponte 2025-05-12 16:05:38 +02:00
parent 7214203534
commit ccd6fa7cf9
2 changed files with 47 additions and 5 deletions

View file

@ -11,7 +11,7 @@ vim.g.loaded_netrwPlugin = 1
vim.opt.termguicolors = true
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
vim.g.have_nerd_font = true
-- Load options from options.lua
require 'options'
@ -708,8 +708,8 @@ require('lazy').setup({
appearance = {
-- 'mono' (default) for 'Nerd Font Mono' or 'normal' for 'Nerd Font'
-- Adjusts spacing to ensure icons are aligned
-- nerd_font_variant = 'mono',
nerd_font_variant = 'normal',
nerd_font_variant = 'mono',
-- nerd_font_variant = 'normal',
},
completion = {
@ -797,7 +797,6 @@ require('lazy').setup({
end,
},
{
'polirritmico/monokai-nightasty.nvim',
lazy = false,
priority = 1000,
@ -846,7 +845,6 @@ require('lazy').setup({
{
'tanvirtin/monokai.nvim',
config = function()
-- pcall(vim.cmd, [[colorscheme monokai]])
require('monokai').setup { palette = require('monokai').classic }
end,
},