feat(nvim): little updates to some plugins

This commit is contained in:
Sergio Laín 2025-07-13 00:59:55 +02:00
parent 144bbb54bd
commit 9ddb852b34
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438
3 changed files with 4 additions and 7 deletions

View file

@ -2,9 +2,7 @@ return {
{ {
"otavioschwanck/arrow.nvim", "otavioschwanck/arrow.nvim",
event = "VeryLazy", event = "VeryLazy",
opts = { opts = {},
show_icons = true,
},
-- stylua: ignore -- stylua: ignore
keys = { keys = {
{ "<leader>m", function() require("arrow.ui").openMenu() end, desc = "Marks" }, { "<leader>m", function() require("arrow.ui").openMenu() end, desc = "Marks" },

View file

@ -73,6 +73,7 @@ return {
}, },
{ {
"MeanderingProgrammer/py-requirements.nvim", "MeanderingProgrammer/py-requirements.nvim",
enabled = false,
event = { event = {
"BufRead requirements.txt", "BufRead requirements.txt",
}, },

View file

@ -1,11 +1,9 @@
return { return {
"folke/tokyonight.nvim", "folke/tokyonight.nvim",
name = "tokyonight",
lazy = false,
opts = { opts = {
style = "storm", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day` style = "storm", -- The theme comes in three styles, `storm`, `moon`, a darker variant `night` and `day`
light_style = "day", -- The theme is used when the background is set to light light_style = "night", -- The theme is used when the background is set to light
transparent = false, -- Enable this to disable setting the background color transparent = true, -- Enable this to disable setting the background color
terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim
styles = { styles = {
-- Style to be applied to different syntax groups -- Style to be applied to different syntax groups