feat: Add rose-pine theme
This commit is contained in:
parent
313ee92b64
commit
8919061aef
3 changed files with 27 additions and 1 deletions
|
@ -160,6 +160,7 @@
|
||||||
blink-cmp
|
blink-cmp
|
||||||
ts-comments-nvim
|
ts-comments-nvim
|
||||||
grug-far-nvim
|
grug-far-nvim
|
||||||
|
rose-pine
|
||||||
nvim-treesitter-textobjects
|
nvim-treesitter-textobjects
|
||||||
nvim-treesitter.withAllGrammars
|
nvim-treesitter.withAllGrammars
|
||||||
# This is for if you only want some of the grammars
|
# This is for if you only want some of the grammars
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
return {}
|
|
26
lua/plugins/rose-pine.lua
Normal file
26
lua/plugins/rose-pine.lua
Normal 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,
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in a new issue