diff --git a/lua/weeheavy/plugins/theme/rosepine.lua b/lua/weeheavy/plugins/theme/rosepine.lua index 7d5a55a..c9ff694 100644 --- a/lua/weeheavy/plugins/theme/rosepine.lua +++ b/lua/weeheavy/plugins/theme/rosepine.lua @@ -5,16 +5,22 @@ return { lazy = false, enabled = true, priority = 1000, - opts = { - styles = { - -- transparency = true, - }, - config = function() - local rose = require("rose-pine") - rose.setup({ - variant = "auto", -- auto, main, moon, or dawn - dark_variant = "moon", -- main, moon, or dawn - }) - end, - }, + opts = {}, + config = function() + local rose = require("rose-pine") + rose.setup({ + variant = "auto", -- auto, main, moon, or dawn + dark_variant = "moon", -- main, moon, or dawn + extend_background_behind_borders = true, + -- disable_background = true, + enable = { + terminal = true, + legacy_highlights = true, -- Improve compatibility for previous versions of Neovim + migrations = true, -- Handle deprecated options automatically + }, + styles = { + transparency = false, + }, + }) + end, } diff --git a/lua/weeheavy/prefs.lua b/lua/weeheavy/prefs.lua index 6312c93..531d075 100644 --- a/lua/weeheavy/prefs.lua +++ b/lua/weeheavy/prefs.lua @@ -6,7 +6,10 @@ vim.lsp.enable({ "yaml", "ansible", "marksman", + "write-good", + "woke", "tailwind", + "docker-compose", }) -- Set highlight on search @@ -59,14 +62,9 @@ vim.opt.cursorline = true vim.opt.wrap = false vim.opt.termguicolors = true --- vim.opt.background = "dark" -- light, dark -- Themes: --- tokyonight-night --- tokyonight-storm --- tokyonight-day --- tokyonight-moon --- vim.cmd.colorscheme("tokyonight-storm") vim.cmd.colorscheme("rose-pine") +-- vim.opt.background = "light" -- light, dark -- Decrease update time vim.opt.updatetime = 250 @@ -97,7 +95,7 @@ vim.filetype.add({ }, }) --- rounded borders +-- Rounded borders vim.opt.winborder = "rounded" -- Inline hints