mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
add lovely statusline
parent
025604fc2a
commit
55617b6df2
1 changed files with 19 additions and 0 deletions
19
Recipes.md
19
Recipes.md
|
|
@ -1,3 +1,22 @@
|
||||||
|
## Lovely statusline
|
||||||
|
|
||||||
|
> Feel free to change "love" to your favourite Rosé Pine accent colour
|
||||||
|
|
||||||
|
<img width="705" alt="Screenshot 2023-02-23 at 14 31 40" src="https://user-images.githubusercontent.com/1474821/221023421-2f57284e-5b40-4cec-967d-9d5a18ce7128.png">
|
||||||
|
|
||||||
|
|
||||||
|
```lua
|
||||||
|
vim.opt.laststatus = 2 -- Or 3 for global statusline
|
||||||
|
vim.opt.statusline = " %f %m %= %l:%c ♥ "
|
||||||
|
|
||||||
|
require("rose-pine").setup({
|
||||||
|
highlight_groups = {
|
||||||
|
StatusLine = { fg = "love", bg = "love", blend = 10 },
|
||||||
|
StatusLineNC = { fg = "subtle", bg = "surface" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
```
|
||||||
|
|
||||||
## Transparent telescope.nvim
|
## Transparent telescope.nvim
|
||||||
|
|
||||||
> Can also be used with `disable_float_background = true`
|
> Can also be used with `disable_float_background = true`
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue