🔧 chore(nvim): some typos here and there

This commit is contained in:
Sergio Laín 2023-11-26 01:38:33 +01:00
parent cb68f38aeb
commit f98683298e
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
4 changed files with 5 additions and 15 deletions

View file

@ -86,7 +86,3 @@ end
vim.o.winwidth = 10 vim.o.winwidth = 10
vim.o.winminwidth = 10 vim.o.winminwidth = 10
vim.o.equalalways = false vim.o.equalalways = false
-- vim.opt.shiftwidth = 4
-- vim.opt.tabstop = 4
-- vim.opt.smartindent = true
-- vim.opt.expandtab = true

View file

@ -13,7 +13,6 @@ return {
"folke/edgy.nvim", "folke/edgy.nvim",
optional = true, optional = true,
opts = function(_, opts) opts = function(_, opts)
opts.right = opts.right or {}
table.insert(opts.right, { table.insert(opts.right, {
title = "Symbols Outline", title = "Symbols Outline",
ft = "outline", ft = "outline",

View file

@ -32,14 +32,9 @@ return {
}, },
{ {
"mfussenegger/nvim-ansible", "mfussenegger/nvim-ansible",
-- stylua: ignore
keys = { keys = {
{ { "<leader>tp", function() require("ansible").run() end, desc = "Run Ansible Playbooks" },
"<leader>tp",
function()
require("ansible").run()
end,
desc = "Run Ansible Playbooks",
},
}, },
}, },
} }

View file

@ -1,9 +1,6 @@
return { return {
"HiPhish/rainbow-delimiters.nvim", "HiPhish/rainbow-delimiters.nvim",
event = "BufRead", event = "BufRead",
config = function(_, opts)
require("rainbow-delimiters.setup").setup({ opts })
end,
opts = { opts = {
highlight = { highlight = {
"RainbowDelimiterBlue", "RainbowDelimiterBlue",
@ -15,4 +12,7 @@ return {
"RainbowDelimiterGreen", "RainbowDelimiterGreen",
}, },
}, },
config = function(_, opts)
require("rainbow-delimiters.setup").setup({ opts })
end,
} }