feat: Add rose-pine theme

This commit is contained in:
punkfairie 2025-03-01 12:43:54 -08:00
parent 313ee92b64
commit 8919061aef
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 27 additions and 1 deletions

View file

@ -160,6 +160,7 @@
blink-cmp
ts-comments-nvim
grug-far-nvim
rose-pine
nvim-treesitter-textobjects
nvim-treesitter.withAllGrammars
# This is for if you only want some of the grammars

View file

@ -1 +0,0 @@
return {}

26
lua/plugins/rose-pine.lua Normal file
View file

@ -0,0 +1,26 @@
return {
{
'rose-pine/neovim',
name = 'rose-pine',
},
{
'LazyVim/LazyVim',
opts = {
colorscheme = 'rose-pine',
},
},
{
'akinsho/bufferline.nvim',
optional = true,
opts = {
highlights = require 'rose-pine.plugins.bufferline',
},
},
{
'nvim-lualine/lualine.nvim',
optional = true,
opts = function(_, opts)
table.insert(opts.options, { theme = 'rose-pine' })
end,
},
}