local util = require('rose-pine.util') local M = {} local show_init_messages = true local function check_for_deprecated_opts() local alerts = {} local should_alert = false -- Deprecated options if vim.g.rose_pine_bold_vertical_split_line ~= nil then should_alert = true table.insert(alerts, 'vim.g.rose_pine_bold_vertical_split_line renamed to bold_vert_split') end if vim.g.rose_pine_inactive_background ~= nil then should_alert = true table.insert(alerts, 'vim.g.rose_pine_inactive_background renamed to dim_nc_background') end if vim.g.rose_pine_disable_background ~= nil then should_alert = true table.insert(alerts, 'vim.g.rose_pine_disable_background renamed to disable_background') end if vim.g.rose_pine_disable_float_background ~= nil then should_alert = true table.insert( alerts, 'vim.g.rose_pine_disable_float_background renamed to disable_float_background' ) end if vim.g.rose_pine_disable_italics ~= nil then should_alert = true table.insert(alerts, 'vim.g.rose_pine_disable_italics renamed to disable_italics') end if vim.g.rose_pine_colors ~= nil then should_alert = true table.insert(alerts, 'vim.g.rose_pine_colors renamed to groups') end if should_alert then local prefix = ' ' print('Rosé Pine – https://github.com/rose-pine/neovim') print(prefix .. 'vim.g.rose_pine_