diff --git a/flake.nix b/flake.nix index 1f714a7..0043380 100644 --- a/flake.nix +++ b/flake.nix @@ -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 diff --git a/lua/plugins/init.lua b/lua/plugins/init.lua deleted file mode 100644 index a564707..0000000 --- a/lua/plugins/init.lua +++ /dev/null @@ -1 +0,0 @@ -return {} diff --git a/lua/plugins/rose-pine.lua b/lua/plugins/rose-pine.lua new file mode 100644 index 0000000..5019042 --- /dev/null +++ b/lua/plugins/rose-pine.lua @@ -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, + }, +}