feat: update nvim config. Disabled italic font and enabled the new ui

This commit is contained in:
2026-04-26 10:10:16 +02:00
parent 8648cf73bb
commit ce3d8cf0cc
2 changed files with 5 additions and 1 deletions

View File

@@ -33,3 +33,6 @@ vim.opt.completeopt = { "menuone", "noselect", "popup" }
vim.opt.autocomplete = true
vim.opt.complete = "o" -- Include only omnifunc results
vim.opt.pumheight = 5
-- Enable the new UI features in Neovim 0.12
require('vim._core.ui2').enable()

View File

@@ -31,7 +31,8 @@ return {
priority = 1000,
opts = {
styles = {
transparency = true
transparency = true,
italic = false,
},
},
config = function(_, opts)