feat(nvim): little updates to some plugins
This commit is contained in:
parent
144bbb54bd
commit
9ddb852b34
3 changed files with 4 additions and 7 deletions
|
@ -2,9 +2,7 @@ return {
|
|||
{
|
||||
"otavioschwanck/arrow.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
show_icons = true,
|
||||
},
|
||||
opts = {},
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
{ "<leader>m", function() require("arrow.ui").openMenu() end, desc = "Marks" },
|
||||
|
|
|
@ -73,6 +73,7 @@ return {
|
|||
},
|
||||
{
|
||||
"MeanderingProgrammer/py-requirements.nvim",
|
||||
enabled = false,
|
||||
event = {
|
||||
"BufRead requirements.txt",
|
||||
},
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
return {
|
||||
"folke/tokyonight.nvim",
|
||||
name = "tokyonight",
|
||||
lazy = false,
|
||||
opts = {
|
||||
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
|
||||
transparent = false, -- Enable this to disable setting the background color
|
||||
light_style = "night", -- The theme is used when the background is set to light
|
||||
transparent = true, -- Enable this to disable setting the background color
|
||||
terminal_colors = true, -- Configure the colors used when opening a `:terminal` in Neovim
|
||||
styles = {
|
||||
-- Style to be applied to different syntax groups
|
||||
|
|
Loading…
Add table
Reference in a new issue