From a7ff221df3ffefab3b28a2ca26aa750c7dbe2f0f Mon Sep 17 00:00:00 2001 From: Gaiety Date: Fri, 3 Apr 2026 19:22:44 -0600 Subject: [PATCH] roseline status line for vim --- nvim/init.lua | 1 + nvim/lua/statusline.lua | 7 +++++++ nvim/lua/theme.lua | 1 - nvim/nvim-pack-lock.json | 4 ++++ 4 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 nvim/lua/statusline.lua diff --git a/nvim/init.lua b/nvim/init.lua index 9af11ea..10a94e3 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -3,3 +3,4 @@ require('keys') require('highlighting') require('theme') +require('statusline') diff --git a/nvim/lua/statusline.lua b/nvim/lua/statusline.lua new file mode 100644 index 0000000..ea1a112 --- /dev/null +++ b/nvim/lua/statusline.lua @@ -0,0 +1,7 @@ +vim.pack.add({ + 'https://github.com/maxmx03/roseline' +}) + +require('roseline').setup({ + theme = 'rose-pine-moon', +}) diff --git a/nvim/lua/theme.lua b/nvim/lua/theme.lua index a135966..887808c 100644 --- a/nvim/lua/theme.lua +++ b/nvim/lua/theme.lua @@ -8,7 +8,6 @@ require('rose-pine').setup({ Comment = { italic = true } }, styles = { - italic = true, transparency = true, }, }) diff --git a/nvim/nvim-pack-lock.json b/nvim/nvim-pack-lock.json index 8f5e047..95629a4 100644 --- a/nvim/nvim-pack-lock.json +++ b/nvim/nvim-pack-lock.json @@ -3,6 +3,10 @@ "neovim": { "rev": "cf2a288696b03d0934da713d66c6d71557b5c997", "src": "https://github.com/rose-pine/neovim" + }, + "roseline": { + "rev": "f8c9088e72a238dc27039472116fc642e7f4dee9", + "src": "https://github.com/maxmx03/roseline" } } }